Skip to content

Commit f2a4b66

Browse files
committed
Use correct field to specify Go version in GitHub action
There is a typo in the actions/setup-go step which leads to the Go version not being picked up correctly. Fix it.
1 parent 797e0c2 commit f2a4b66

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
steps:
2727
- uses: actions/setup-go@v2
2828
with:
29-
go-versions: ${{ matrix.go }}
29+
go-version: ${{ matrix.go }}
3030
- uses: actions/checkout@v2
3131
- name: test
3232
shell: bash

0 commit comments

Comments
 (0)