use ${{ matrix.go }}

This commit is contained in:
Alex Flint 2020-04-03 12:19:40 -04:00
parent af757bea98
commit 65ef631f5f
1 changed files with 2 additions and 1 deletions

View File

@ -22,7 +22,7 @@ jobs:
name: Set up Go
uses: actions/setup-go@v1
with:
go-version: 1.13 # ${{ matrix.go }}
go-version: ${{ matrix.go }}
- name: Check out code into the Go module directory
uses: actions/checkout@v2
@ -41,6 +41,7 @@ jobs:
# notifies coveralls that all test jobs are finished
finish:
name: Finish
needs: build_and_test
runs-on: ubuntu-latest
steps: