Update go.yml

This commit is contained in:
Josh Baker 2020-11-03 12:28:57 -07:00 committed by tidwall
parent 6ae1b55ab5
commit e9f88aa09c
1 changed files with 8 additions and 0 deletions

View File

@ -21,5 +21,13 @@ jobs:
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Get dependencies
run: |
go get -v -t -d ./...
if [ -f Gopkg.toml ]; then
curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
dep ensure
fi
- name: Test
run: make test