We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 82e7529 commit 7f856d6Copy full SHA for 7f856d6
1 file changed
.github/workflows/go-test-linux.yml
@@ -13,6 +13,8 @@ permissions:
13
jobs:
14
get-go-version:
15
runs-on: ubuntu-latest
16
+ outputs:
17
+ go-version: ${{ steps.get-go-version.outputs.go-version }}
18
steps:
19
- uses: actions/checkout@v2
20
- name: 'Determine Go version'
@@ -31,5 +33,5 @@ jobs:
31
33
with:
32
34
go-version: ${{ needs.get-go-version.outputs.go-version }}
35
- run: |
- echo "Testing with Go $(cat .go-version)"
36
+ echo "Testing with Go ${{ needs.get-go-version.outputs.go-version }}"
37
go test -race -count 1 ./... -timeout=3m
0 commit comments