-
Notifications
You must be signed in to change notification settings - Fork 169
103 lines (85 loc) · 2.41 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
name: build
on:
push:
branches:
- main
pull_request:
jobs:
linux-test:
name: Test
strategy:
matrix:
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Install packages
run: |
sudo apt-get update
sudo apt-get install sqlite3
- name: Install aws-cli
uses: isbang/[email protected]
- name: Check out source code
uses: actions/checkout@v4
- name: Set up Go on ${{ matrix.platform }}
uses: actions/setup-go@v4
with:
go-version-file: go.mod
- name: Decrypt secrets
run: gpg --quiet --batch --yes --decrypt --passphrase="$GCP_CLIENT_SECRETS_PASSPHRASE" --output $GITHUB_WORKSPACE/client_secrets.json $GITHUB_WORKSPACE/client_secrets.json.gpg
if: github.ref == 'refs/heads/main'
env:
GCP_CLIENT_SECRETS_PASSPHRASE: ${{ secrets.GCP_CLIENT_SECRETS_PASSPHRASE }}
- name: Start databases
run: |
docker-compose up -d
sleep 20s
- name: Run lint
uses: reviewdog/action-golangci-lint@v2
with:
go_version_file: go.mod
reporter: github-pr-check
- name: Run tests
run: make ci
env:
DEBUG: "true"
- name: Run BigQuery integration
run: make test_bigquery
if: github.ref == 'refs/heads/main'
- name: Run install script (aka use)
run: sh use
- name: Run Trivy vulnerability scanner in repo mode
uses: aquasecurity/trivy-action@master
with:
scan-type: 'fs'
- name: Run octocov
uses: k1LoW/octocov-action@v0
env:
DEBUG: true
windows-test:
name: Test
strategy:
matrix:
platform: [windows-2019]
runs-on: ${{ matrix.platform }}
steps:
- name: Use LF
run: |
git config --global core.autocrlf false
git config --global core.eol lf
- name: Install packages
run: |
choco install sqlite
- name: Install aws-cli
uses: isbang/[email protected]
- name: Check out source code
uses: actions/checkout@v4
- name: Set up Go on ${{ matrix.platform }}
uses: actions/setup-go@v4
with:
go-version-file: go.mod
- name: Run tests
run: |
make ci_windows
shell: bash
env:
DEBUG: "true"