-
-
Notifications
You must be signed in to change notification settings - Fork 9
216 lines (190 loc) · 6.48 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
---
name: pr
on:
pull_request:
env:
GO111MODULE: "on"
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref }}
cancel-in-progress: true
jobs:
setup:
runs-on: ubuntu-latest
outputs:
go-version: ${{ steps.find-go-version.outputs.go-version }}
go-latest-version: ${{ steps.find-go-version.outputs.go-latest-version }}
go-supported-versions: ${{ steps.find-go-version.outputs.go-supported-versions }}
steps:
- name: Checkout code
uses: nhatthm/gh-actions/checkout@master
- id: find-go-version
name: Find Go version
uses: nhatthm/gh-actions/find-go-version@master
precondition:
name: precondition
needs: [setup]
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' }}
GO_VERSION: ${{ needs.setup.outputs.go-version }}
GO_LATEST_VERSION: ${{ needs.setup.outputs.go-latest-version }}
steps:
- name: Checkout code
uses: nhatthm/gh-actions/checkout@master
if: ${{ env.IS_DEPENDABOT_PR == 'true' }}
- name: Install Go
uses: nhatthm/gh-actions/setup-go@master
if: ${{ env.IS_DEPENDABOT_PR == 'true' }}
with:
go-version: ${{ env.GO_VERSION }}
- 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: [setup, precondition]
env:
GO_VERSION: ${{ needs.setup.outputs.go-version }}
GO_LATEST_VERSION: ${{ needs.setup.outputs.go-latest-version }}
if: ${{ needs.precondition.outputs.passed == 'true' }}
steps:
- name: Checkout code
uses: nhatthm/gh-actions/checkout@master
- name: Install Go
uses: nhatthm/gh-actions/setup-go@master
with:
go-version: ${{ env.GO_LATEST_VERSION }}
- name: Lint
uses: nhatthm/gh-actions/golangci-lint@master
with:
working-directory: ${{ matrix.module }}
args: --timeout=5m
lint-gherkin:
name: lint
runs-on: ubuntu-latest
needs: precondition
if: ${{ needs.precondition.outputs.passed == 'true' }}
steps:
- name: Checkout code
uses: nhatthm/gh-actions/checkout@master
- name: Lint
uses: nhatthm/gh-actions/gherkin-lint@master
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: ${{ fromJson(needs.setup.outputs.go-supported-versions) }}
arch: [ "386", amd64 ]
exclude:
- os: macos-latest
arch: "386"
runs-on: ${{ matrix.os }}
needs: [setup, precondition]
if: ${{ needs.precondition.outputs.passed == 'true' }}
steps:
- name: Checkout code
uses: nhatthm/gh-actions/checkout@master
- name: Install Go
uses: nhatthm/gh-actions/setup-go@master
with:
go-version: ${{ matrix.go-version }}
- 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: nhatthm/gh-actions/codecov@master
with:
files: ./unit.coverprofile
flags: unittests-${{ runner.os }}-${{ runner.arch }}
test-compatibility-mssql:
strategy:
fail-fast: false
matrix:
go-version: ${{ fromJson(needs.setup.outputs.go-supported-versions) }}
arch: [ "386", amd64 ]
mssql-version: [ "2019" ]
runs-on: ubuntu-latest
needs: [setup, test-unit]
steps:
- name: Checkout code
uses: nhatthm/gh-actions/checkout@master
- name: Install Go
uses: nhatthm/gh-actions/setup-go@master
with:
go-version: ${{ matrix.go-version }}
cache-key: ${{ runner.os }}-go-${{ matrix.go-version }}-mssql-cache-${{ hashFiles('**/go.sum') }}
cache-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: ${{ fromJson(needs.setup.outputs.go-supported-versions) }}
arch: [ "386", amd64 ]
mysql-version: [ "8" ]
runs-on: ubuntu-latest
needs: [setup, test-unit]
steps:
- name: Checkout code
uses: nhatthm/gh-actions/checkout@master
- name: Install Go
uses: nhatthm/gh-actions/setup-go@master
with:
go-version: ${{ matrix.go-version }}
cache-key: ${{ runner.os }}-go-${{ matrix.go-version }}-mysql-cache-${{ hashFiles('**/go.sum') }}
cache-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: ${{ fromJson(needs.setup.outputs.go-supported-versions) }}
arch: [ "386", amd64 ]
postgres-version: [ "12", "13", "14", "15", "16" ]
postgres-driver: [ "postgres", "pgx/v4", "pgx/v5" ]
runs-on: ubuntu-latest
needs: [setup, test-unit]
steps:
- name: Checkout code
uses: nhatthm/gh-actions/checkout@master
- name: Install Go
uses: nhatthm/gh-actions/setup-go@master
with:
go-version: ${{ matrix.go-version }}
cache-key: ${{ runner.os }}-go-${{ matrix.go-version }}-postgres-cache-${{ hashFiles('**/go.sum') }}
cache-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