circleci: get submodules on checkout, fix failing tests
This commit is contained in:
parent
becd4f2333
commit
f1e87f497b
1 changed files with 4 additions and 0 deletions
|
@ -54,6 +54,8 @@ jobs:
|
|||
executor: go1_12
|
||||
steps:
|
||||
- checkout
|
||||
- run: git submodule sync
|
||||
- run: git submodule update --init
|
||||
- gomod
|
||||
- run: go test -v -race ./...
|
||||
|
||||
|
@ -62,6 +64,8 @@ jobs:
|
|||
executor: go1_13
|
||||
steps:
|
||||
- checkout
|
||||
- run: git submodule sync
|
||||
- run: git submodule update --init
|
||||
- gomod
|
||||
- run: go test -v -race ./... -coverprofile=coverage.txt -covermode=atomic
|
||||
- codecov/upload:
|
||||
|
|
Loading…
Reference in a new issue