Skip to content

Commit

Permalink
feat(ci): Test more go versions and update setup-go action (#57)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonstacks authored Dec 12, 2024
1 parent 84e43f9 commit 39d7cea
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,17 @@ jobs:
strategy:
fail-fast: false
matrix:
go-version: ['1.18', '1.19']
go-version:
- '1.18'
- '1.19'
- '1.20'
- '1.21'
- '1.22'
- '1.23'
steps:
- uses: actions/checkout@v3
- name: Set up Go ${{ matrix.go-version }}
uses: actions/setup-go@v3
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Test
Expand Down

0 comments on commit 39d7cea

Please sign in to comment.