go: download dependencies before running tests in CI
This commit is contained in:
parent
a8894a0745
commit
7dbc5e99e4
1 changed files with 4 additions and 1 deletions
5
.github/workflows/go.yml
vendored
5
.github/workflows/go.yml
vendored
|
|
@ -18,7 +18,10 @@ jobs:
|
|||
uses: actions/checkout@v2
|
||||
|
||||
- name: Verify dependencies
|
||||
run: go mod verify
|
||||
shell: bash
|
||||
run: |
|
||||
go mod verify
|
||||
go mod download
|
||||
|
||||
- name: Run tests
|
||||
shell: bash
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue