Skip to content

Commit

Permalink
Fix path
Browse files Browse the repository at this point in the history
  • Loading branch information
joeig committed Apr 10, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent 0ff9114 commit 547546b
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/staticcheck.yml
Original file line number Diff line number Diff line change
@@ -20,4 +20,4 @@ jobs:
with:
go-version-file: "go.mod"
- run: go install honnef.co/go/tools/cmd/staticcheck@latest
- run: $(go env GOPATH)/bin/staticcheck ./
- run: $(go env GOPATH)/bin/staticcheck ./...
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -24,7 +24,7 @@ jobs:
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.goVer }}
- run: go test -v -coverprofile="coverage.out" .
- run: go test -v -coverprofile="coverage.out" ./...
- run: go tool cover -func="coverage.out"
- uses: vladopajic/[email protected]
with:
@@ -44,4 +44,4 @@ jobs:
with:
go-version-file: "go.mod"
- uses: actions/checkout@v4
- run: GONOMOCKS=1 go test -v .
- run: GONOMOCKS=1 go test -v ./...

0 comments on commit 547546b

Please sign in to comment.