Skip to content

Commit

Permalink
Fix go versions in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Verseth committed Jul 1, 2023
1 parent 134f1fb commit 357106f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
go: [1.18, 1.19, 1.20]
go: ['1.18', '1.19', '1.20']
steps:
- name: Set up Go 1.16
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go }}
Expand All @@ -33,7 +33,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.20
go-version: '1.20'
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@master
Expand Down

0 comments on commit 357106f

Please sign in to comment.