We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 266436b commit e9f46c2Copy full SHA for e9f46c2
.github/workflows/test.yml
@@ -10,13 +10,22 @@ jobs:
10
11
test:
12
runs-on: ubuntu-latest
13
+ strategy:
14
+ matrix:
15
+ go:
16
+ - '1.18'
17
+ - '1.19'
18
+ - '1.20'
19
+ - '1.21'
20
+ - '1.22'
21
+ - '1.x'
22
steps:
23
- uses: actions/checkout@v2
24
25
- name: Set up Go
26
uses: actions/setup-go@v2
27
with:
- go-version: 1.18
28
+ go-version: ${{ matrix.go }}
29
stable: false
30
31
- name: Build
@@ -35,3 +44,4 @@ jobs:
35
44
file: ./cover.out
36
45
flags: unittests
37
46
verbose: true
47
+ if: matrix.go == '1.18'
0 commit comments