ci: add go bin dir to path for test

This commit is contained in:
Caleb Doxsey 2020-04-17 08:37:45 -06:00 committed by Caleb Doxsey
parent f979bae194
commit 6baf25dae8

View file

@ -36,7 +36,9 @@ jobs:
- name: Build dependencies
run: make build-deps
- name: Test
run: make test
run: |
export PATH=$PATH:$(go env GOPATH)/bin
make test
cover:
strategy: