Skip to content

Commit

Permalink
ci: do run Go tests
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 <kolyshkin@gmail.com>
  • Loading branch information
kolyshkin authored and polyfloyd committed Aug 20, 2023
1 parent 285a074 commit 8acbbdf
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 8acbbdf

Please sign in to comment.