update go workflow again

I threw the go's dep earlier in the workflow even though installation is already stated. we'll see how this goes
This commit is contained in:
Wyatt J. Miller 2019-10-05 20:32:03 -04:00 committed by GitHub
parent 77a9941a0e
commit 832a8568f4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,6 +18,9 @@ jobs:
- name: Setup GOPATH
run: mkdir -p /home/runner/go/bin
- name: Install Go's dep dependency manager
run: curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
- name: Check out code into the Go module directory
uses: actions/checkout@v1