Skip to content

Commit

Permalink
fix: do run tests in CI
Browse files Browse the repository at this point in the history
Apparently, what happens in GHA CI now is:

> go test -test.v -race -cover
> shell: /usr/bin/bash -e {0}
> ?   	github.com/polyfloyd/go-errorlint	[no test files]

Fix this.

Signed-off-by: Kir Kolyshkin <[email protected]>
  • Loading branch information
kolyshkin committed Aug 15, 2023
1 parent 41edee2 commit eb31830
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: go build
run: go build -v
- name: go test
run: go test -test.v -race -cover
run: go test -test.v -race -cover ./...

conventional-commits:
runs-on: ubuntu-latest
Expand Down

0 comments on commit eb31830

Please sign in to comment.