Skip to content

Commit

Permalink
ci: Don't explicitly require vendor folder
Browse files Browse the repository at this point in the history
  • Loading branch information
TwiN committed Jan 3, 2023
1 parent 408117a commit a251cae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ jobs:
go-version: 1.19
- uses: actions/checkout@v3
- name: Test (race)
run: go test -mod vendor ./... -race
run: go test ./... -race
- name: Test (coverage)
run: go test -mod vendor ./... -coverprofile=coverage.txt -covermode=atomic
run: go test ./... -coverprofile=coverage.txt -covermode=atomic
- name: Codecov
uses: codecov/[email protected]
with:
Expand Down

0 comments on commit a251cae

Please sign in to comment.