go: download dependencies before running tests in CI

This commit is contained in:
Mislav Marohnić 2020-04-01 14:42:32 +02:00
parent a8894a0745
commit 7dbc5e99e4

View file

@ -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