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 f765f80 commit 6ee1db2Copy full SHA for 6ee1db2
.github/workflows/go.yml
@@ -7,6 +7,9 @@ on:
7
name: run tests
8
jobs:
9
lint:
10
+ strategy:
11
+ matrix:
12
+ go-version: ["1.18.x"]
13
runs-on: ubuntu-latest
14
steps:
15
- name: Install Go
@@ -19,11 +22,12 @@ jobs:
19
22
uses: golangci/[email protected]
20
23
with:
21
24
version: "v1.37.1"
25
+ go-version: ${{ matrix.go-version }}
26
27
test:
28
strategy:
29
matrix:
- go-version: ["1.12.0", "^1.17.6"]
30
+ go-version: ["1.12.0", "1.18.x"]
31
platform: [ubuntu-latest, macos-latest, windows-latest]
32
runs-on: ${{ matrix.platform }}
33
0 commit comments