Skip to content

Commit d5a06f7

Browse files
committed
fix: test on minimal and stable golang versions
1 parent 1f59685 commit d5a06f7

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,20 @@ on:
99
jobs:
1010

1111
CI:
12+
strategy:
13+
fail-fast: false
14+
matrix:
15+
go-version:
16+
- "1.20.0"
17+
- "stable"
1218
runs-on: ubuntu-latest
1319
steps:
1420
- uses: actions/checkout@v3
1521

1622
- name: Set up Go
1723
uses: actions/setup-go@v3
1824
with:
19-
go-version: 1.20.0
25+
go-version: ${{ matrix.go-version }}
2026

2127
- name: Dependencies
2228
run: go mod download

0 commit comments

Comments
 (0)