We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b1ee81 commit df06398Copy full SHA for df06398
1 file changed
.github/workflows/main.yml
@@ -10,10 +10,18 @@ on:
10
- v*
11
jobs:
12
test:
13
+ strategy:
14
+ fail-fast: false
15
+ matrix:
16
+ go-version:
17
+ - stable
18
+ - oldstable
19
runs-on: ubuntu-latest
20
steps:
21
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
22
- uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491
23
+ with:
24
+ go-version: ${{ matrix.go-version }}
25
- name: build
26
run: go build ./...
27
- name: test
0 commit comments