add go get step

This commit is contained in:
Eli Bishop
2020-06-09 11:12:03 -07:00
parent 7b9f3e3dc3
commit 30c6b59265

View File

@@ -49,6 +49,7 @@ jobs:
steps: steps:
- checkout - checkout
- run: go get -u $COMMON_GO_PACKAGES - run: go get -u $COMMON_GO_PACKAGES
- run: go get -t .
- run: - run:
name: Run tests name: Run tests
@@ -86,4 +87,5 @@ jobs:
name: build and test name: build and test
command: | command: |
cd ${env:GOPATH}\src\${env:PACKAGE_PATH} cd ${env:GOPATH}\src\${env:PACKAGE_PATH}
go get -t .
go test -v -race ./... go test -v -race ./...