-
-
Notifications
You must be signed in to change notification settings - Fork 9
260 lines (230 loc) · 6.98 KB
/
pr.yaml
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
---
name: pr
on:
pull_request:
env:
GO111MODULE: "on"
GO_VERSION: 1.20.x
GO_LATEST_VERSION: "1.19.x"
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref }}
cancel-in-progress: true
jobs:
precondition:
name: precondition
outputs:
passed: ${{ steps.check.outputs.passed == '' && 'true' || steps.check.outputs.passed }}
runs-on: ubuntu-latest
env:
IS_DEPENDABOT_PR: ${{ startsWith(github.head_ref, 'dependabot/go_modules/') && 'true' || 'false' }}
steps:
- uses: actions/checkout@v3
if: ${{ env.IS_DEPENDABOT_PR == 'true' }}
- name: Install Go
uses: actions/setup-go@v4
if: ${{ env.IS_DEPENDABOT_PR == 'true' }}
with:
go-version: ${{ env.GO_VERSION }}
- name: Go cache
uses: actions/cache@v3
if: ${{ env.IS_DEPENDABOT_PR == 'true' }}
with:
# In order:
# * Module download cache
# * Build cache (Linux)
path: |
~/go/pkg/mod
~/.cache/go-build
key: ${{ runner.os }}-go-${{ env.GO_VERSION }}-cache-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-${{ env.GO_VERSION }}-cache
- id: check
if: ${{ env.IS_DEPENDABOT_PR == 'true' }}
run: .github/scripts/pr_precondition.sh
lint-go:
name: lint
strategy:
fail-fast: false
matrix:
module: [ ".", "tests/suite", "tests/mssql", "tests/mysql", "tests/postgres" ]
runs-on: ubuntu-latest
needs: precondition
if: ${{ needs.precondition.outputs.passed == 'true' }}
steps:
- uses: actions/checkout@v3
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: ${{ env.GO_VERSION }}
- id: vars
run: |
make $GITHUB_OUTPUT
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: ${{ steps.vars.outputs.GOLANGCI_LINT_VERSION }}
working-directory: ${{ matrix.module }}
args: --timeout=5m
lint-gherkin:
name: lint
runs-on: ubuntu-latest
needs: precondition
if: ${{ needs.precondition.outputs.passed == 'true' }}
steps:
- uses: actions/checkout@v3
- name: gherkin-lint
uses: nhatthm/[email protected]
with:
feature_files: tests/features/*
config_file: tests/.gherkin-lintrc
test-unit:
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
go-version: [ 1.19.x, 1.20.x ]
arch: [ "386", amd64 ]
exclude:
- os: macos-latest
arch: "386"
runs-on: ${{ matrix.os }}
needs: precondition
if: ${{ needs.precondition.outputs.passed == 'true' }}
steps:
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v3
- name: Go cache
uses: actions/cache@v3
with:
# In order:
# * Module download cache
# * Build cache (Linux)
path: |
~/go/pkg/mod
~/.cache/go-build
key: ${{ runner.os }}-go-${{ matrix.go-version }}-cache-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-${{ matrix.go-version }}-cache
- name: Test
id: test
env:
GOARCH: ${{ matrix.arch }}
run: |
make test-unit
- name: Upload code coverage (unit)
if: ${{ matrix.go-version == env.GO_LATEST_VERSION }}
uses: codecov/codecov-action@v3
with:
files: ./unit.coverprofile
flags: unittests-${{ runner.os }}-${{ runner.arch }}
test-compatibility-mssql:
strategy:
fail-fast: false
matrix:
go-version: [ 1.19.x, 1.20.x ]
arch: [ "386", amd64 ]
mssql-version: [ "2019" ]
runs-on: ubuntu-latest
needs: test-unit
steps:
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v3
- name: Go cache
uses: actions/cache@v3
with:
# In order:
# * Module download cache
# * Build cache (Linux)
path: |
~/go/pkg/mod
~/.cache/go-build
key: ${{ runner.os }}-go-${{ matrix.go-version }}-mssql-cache-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-${{ matrix.go-version }}-mssql-cache
- name: Test
id: test
env:
GOARCH: ${{ matrix.arch }}
MSSQL_VERSION: ${{ matrix.mssql-version }}-latest
run: |
make test-compatibility-mssql
test-compatibility-mysql:
strategy:
fail-fast: false
matrix:
go-version: [ 1.19.x, 1.20.x ]
arch: [ "386", amd64 ]
mysql-version: [ "8" ]
runs-on: ubuntu-latest
needs: test-unit
steps:
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v3
- name: Go cache
uses: actions/cache@v3
with:
# In order:
# * Module download cache
# * Build cache (Linux)
path: |
~/go/pkg/mod
~/.cache/go-build
key: ${{ runner.os }}-go-${{ matrix.go-version }}-mysql-cache-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-${{ matrix.go-version }}-mysql-cache
- name: Test
id: test
env:
GOARCH: ${{ matrix.arch }}
MYSQL_VERSION: ${{ matrix.mysql-version }}
run: |
make test-compatibility-mysql
test-compatibility-postgres:
strategy:
fail-fast: false
matrix:
go-version: [ 1.19.x, 1.20.x ]
arch: [ "386", amd64 ]
postgres-version: [ "12", "13", "14", "15" ]
postgres-driver: [ "postgres", "pgx/v4", "pgx/v5" ]
runs-on: ubuntu-latest
needs: test-unit
steps:
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v3
- name: Go cache
uses: actions/cache@v3
with:
# In order:
# * Module download cache
# * Build cache (Linux)
path: |
~/go/pkg/mod
~/.cache/go-build
key: ${{ runner.os }}-go-${{ matrix.go-version }}-postgres-cache-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-${{ matrix.go-version }}-postgres-cache
- name: Test
id: test
env:
GOARCH: ${{ matrix.arch }}
POSTGRES_VERSION: ${{ matrix.postgres-version }}-alpine
POSTGRES_DRIVER: ${{ matrix.postgres-driver }}
run: |
make test-compatibility-postgres