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 f3cbdf8 commit e41d575Copy full SHA for e41d575
README.md
@@ -22,14 +22,19 @@ jobs:
22
full_ci:
23
strategy:
24
matrix:
25
- go-version: [ 1.14.x ]
+ go_version: [ 1.18.x ]
26
27
- runs-on: ubuntu-18.04
+ runs-on: ubuntu-20.04
28
29
steps:
30
- name: checkout
31
uses: actions/checkout@v2
32
33
+ - name: Set up Go
34
+ uses: actions/setup-go@v3
35
+ with:
36
+ go-version: ${{ matrix.go_version }}
37
+
38
- name: run tests
39
run: go test -json ./... > test.json
40
0 commit comments