diff options
| author | Alex Flint <[email protected]> | 2020-04-03 12:19:40 -0400 |
|---|---|---|
| committer | Alex Flint <[email protected]> | 2020-04-03 12:19:40 -0400 |
| commit | 65ef631f5fce176d49ebee2dd68dc9cf3e693380 (patch) | |
| tree | 8d7bec9a7bdabbd8718c96d9bf468bad1dc7bf6b | |
| parent | af757bea986f79085de7dc3c49651f5bbcf70f63 (diff) | |
use ${{ matrix.go }}
| -rw-r--r-- | .github/workflows/go.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 07f5e18..4be256c 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -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: |
