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 May 17, 2023
1 parent 182f9f0 commit e244a48
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/benchmark.yml
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: 1.20.x
go-version: '1.20.x'
- name: Fetch Repository
uses: actions/checkout@v3
- name: Run Benchmark
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/test.yml
Expand Up @@ -17,7 +17,8 @@ jobs:
Build:
strategy:
matrix:
go-version: [1.17.x, 1.18.x, 1.19.x, 1.20.x]
# NOTE: Always list the version from go.mod
go-version: ['1.17.x', '1.18.x', '1.19.x', '1.20.x']
platform: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.platform }}
steps:
Expand Down

0 comments on commit e244a48

Please sign in to comment.