Skip to content

Commit

Permalink
Test against a matrix of Go versions (#34)
Browse files Browse the repository at this point in the history
  • Loading branch information
mnako authored Aug 2, 2023
1 parent 6d0478a commit 2d5a64d
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,12 @@ jobs:
test:
name: "Test"
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ["1.18", "1.19", "1.20"]
steps:
- uses: actions/setup-go@v3
- uses: actions/setup-go@v4
with:
go-version: "1.18.2"
go-version: ${{ matrix.go-version }}
- uses: actions/checkout@v3
- run: make test

0 comments on commit 2d5a64d

Please sign in to comment.