Skip to content

Commit

Permalink
Use the vendor folder explicitly
Browse files Browse the repository at this point in the history
  • Loading branch information
fatih committed Oct 30, 2020
1 parent 736d972 commit 52c0908
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/go.yml
Expand Up @@ -14,12 +14,12 @@ jobs:
id: go

- name: Check out code into the Go module directory
uses: actions/checkout@v1
uses: actions/checkout@v2

- name: Test
run: |
go mod tidy -v
go test -race ./...
go test -mod=vendor -race ./...
- name: Build
run: go build ./...
run: go build -mod=vendor ./...

0 comments on commit 52c0908

Please sign in to comment.