Skip to content

Commit

Permalink
test: fix CI tests (#167)
Browse files Browse the repository at this point in the history
  • Loading branch information
nobe4 authored Sep 14, 2024
1 parent 1cb50f9 commit 0467283
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Build
run: |
go generate ./...
go build -v ./cmd/gh-not
go build -v -race ./cmd/gh-not
test:
runs-on: ubuntu-latest
Expand All @@ -36,7 +36,9 @@ jobs:
go-version-file: 'go.mod'

- name: Test
run: go test -v -cover ./... | column -t -s' '
run: |
go generate ./...
go test -race -cover ./...
lint:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 0467283

Please sign in to comment.