Skip to content

Commit

Permalink
Use go mod download instead in workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Lawrence Godfrey committed Jun 20, 2023
1 parent 8a08ae5 commit 00b5070
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,10 @@ jobs:
go-version: 1.17

- name: Get dependencies
run: go get -v -t -d ./...
run: go mod download

- name: Build
run: go build ./...

- name: Run tests
run: go test ./... -v

0 comments on commit 00b5070

Please sign in to comment.