Skip to content

Commit df06398

Browse files
committed
feat: test on stable and oldstable Go versions
1 parent 0b1ee81 commit df06398

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

.github/workflows/main.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,18 @@ on:
1010
- v*
1111
jobs:
1212
test:
13+
strategy:
14+
fail-fast: false
15+
matrix:
16+
go-version:
17+
- stable
18+
- oldstable
1319
runs-on: ubuntu-latest
1420
steps:
1521
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
1622
- uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491
23+
with:
24+
go-version: ${{ matrix.go-version }}
1725
- name: build
1826
run: go build ./...
1927
- name: test

0 commit comments

Comments
 (0)