Skip to content

Commit

Permalink
Merge pull request #116 from fatih/fatih/update-actions
Browse files Browse the repository at this point in the history
Use the vendor folder explicitly
  • Loading branch information
fatih committed Oct 30, 2020
2 parents 6a21c3b + 52c0908 commit f307df2
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 f307df2

Please sign in to comment.