Skip to content

Commit

Permalink
github/workflows: put Go version in quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
leonklingele committed Sep 8, 2023
1 parent fe65ff8 commit 1aa7026
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/test.yml
Expand Up @@ -18,7 +18,8 @@ jobs:
Build:
strategy:
matrix:
go-version: [1.17.x, 1.18.x, 1.19.x, 1.20.x, 1.21.x]
# NOTE: Always list the version from go.mod
go-version: ["1.17.x", "1.18.x", "1.19.x", "1.20.x", "1.21.x"]
platform: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.platform }}
steps:
Expand Down

0 comments on commit 1aa7026

Please sign in to comment.