Skip to content

Commit 7dbc5e9

Browse files
committed
go: download dependencies before running tests in CI
1 parent a8894a0 commit 7dbc5e9

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/go.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,10 @@ jobs:
1818
uses: actions/checkout@v2
1919

2020
- name: Verify dependencies
21-
run: go mod verify
21+
shell: bash
22+
run: |
23+
go mod verify
24+
go mod download
2225
2326
- name: Run tests
2427
shell: bash

0 commit comments

Comments
 (0)