Skip to content
This repository was archived by the owner on Apr 5, 2022. It is now read-only.

Commit f307df2

Browse files
authored
Merge pull request fatih#116 from fatih/fatih/update-actions
Use the vendor folder explicitly
2 parents 6a21c3b + 52c0908 commit f307df2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/go.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ jobs:
1414
id: go
1515

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

1919
- name: Test
2020
run: |
2121
go mod tidy -v
22-
go test -race ./...
22+
go test -mod=vendor -race ./...
2323
2424
- name: Build
25-
run: go build ./...
25+
run: go build -mod=vendor ./...

0 commit comments

Comments
 (0)