use ${{ matrix.go }}
This commit is contained in:
parent
af757bea98
commit
65ef631f5f
|
@ -22,7 +22,7 @@ jobs:
|
||||||
name: Set up Go
|
name: Set up Go
|
||||||
uses: actions/setup-go@v1
|
uses: actions/setup-go@v1
|
||||||
with:
|
with:
|
||||||
go-version: 1.13 # ${{ matrix.go }}
|
go-version: ${{ matrix.go }}
|
||||||
|
|
||||||
- name: Check out code into the Go module directory
|
- name: Check out code into the Go module directory
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
|
@ -41,6 +41,7 @@ jobs:
|
||||||
|
|
||||||
# notifies coveralls that all test jobs are finished
|
# notifies coveralls that all test jobs are finished
|
||||||
finish:
|
finish:
|
||||||
|
name: Finish
|
||||||
needs: build_and_test
|
needs: build_and_test
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
|
|
Loading…
Reference in New Issue