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 e0678ea commit 5e59cf8Copy full SHA for 5e59cf8
.github/workflows/test.yml
@@ -10,13 +10,19 @@ jobs:
10
11
test:
12
runs-on: ubuntu-latest
13
+ strategy:
14
+ matrix:
15
+ go:
16
+ - '1.21'
17
+ - '1.22'
18
+ - '1.x'
19
steps:
20
- uses: actions/checkout@v2
21
22
- name: Set up Go
23
uses: actions/setup-go@v2
24
with:
- go-version: 1.21
25
+ go-version: ${{ matrix.go }}
26
stable: false
27
28
- name: Build
@@ -35,3 +41,4 @@ jobs:
35
41
file: ./cover.out
36
42
flags: unittests
37
43
verbose: true
44
+ if: matrix.go == '1.21'
0 commit comments