Skip to content

Commit 966414d

Browse files
authored
Merge pull request #6 from jiaohu/fix/ci
fix(ci): ci action
2 parents d6799f0 + 84e3d95 commit 966414d

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/ci.yaml

+5-2
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,17 @@ jobs:
1212
name: Test
1313
runs-on: ubuntu-latest
1414
steps:
15-
- name: Set up Go 1.x
15+
- name: Set up Go 1.8
1616
uses: actions/setup-go@v2
1717
with:
18-
go-version: ^1.18
18+
go-version: 1.18
1919
id: go
2020

2121
- name: Check out code into the Go module directory
2222
uses: actions/checkout@v2
2323

24+
- name: mod download
25+
run: go mod tidy
26+
2427
- name: Test
2528
run: go test -v .

0 commit comments

Comments
 (0)