Skip to content

Commit cefce9c

Browse files
committed
Fix action file
1 parent 5288ed0 commit cefce9c

File tree

1 file changed

+5
-8
lines changed

1 file changed

+5
-8
lines changed

.github/workflows/go.yml

+5-8
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,20 @@
1-
name: Go
21
on: [push]
2+
name: Test
33
jobs:
4-
5-
build:
6-
name: Build
4+
test:
75
runs-on: ubuntu-latest
86
strategy:
97
matrix:
108
go: ["1.17", "1.21"]
119
steps:
12-
1310
- name: Set up Go ${{ matrix.go }}
1411
uses: actions/setup-go@v1
1512
with:
1613
go-version: ${{ matrix.go }}
1714
id: go
1815

19-
- name: Check out code into the Go module directory
20-
uses: actions/checkout@v1
16+
- name: Check out code
17+
uses: actions/checkout@v3
2118

2219
- name: Get dependencies
2320
run: go get -v -t -d ./...
@@ -34,4 +31,4 @@ jobs:
3431
report: 'true'
3532
chart: 'true'
3633
amend: 'true'
37-
continue-on-error: true
34+
continue-on-error: true

0 commit comments

Comments
 (0)