Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03ac5a3 commit e35996eCopy full SHA for e35996e
.github/workflows/ci.yaml
@@ -30,6 +30,11 @@ jobs:
30
- name: Checkout
31
uses: actions/checkout@v3
32
33
+ # Install Go!
34
+ - uses: actions/setup-go@v3
35
+ with:
36
+ go-version: "~1.21"
37
+
38
- name: Echo Go Cache Paths
39
id: go-cache-paths
40
run: |
@@ -42,10 +47,5 @@ jobs:
42
47
path: ${{ steps.go-cache-paths.outputs.GOCACHE }}
43
48
key: ${{ runner.os }}-go-build-${{ hashFiles('**/go.**', '**.go') }}
44
49
45
- # Install Go!
46
- - uses: actions/setup-go@v3
- with:
- go-version: "~1.21"
-
50
- name: Test
51
run: go test ./...
0 commit comments