Skip to content

Commit

Permalink
code coverage fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mmcdole committed Jan 4, 2025
1 parent 3e5e31a commit 645e090
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,17 @@ jobs:
- name: Static Check
run: staticcheck ./...

coverage:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.21.x'

- name: Run coverage
run: go test -race -coverprofile=coverage.txt -covermode=atomic ./...

Expand Down

0 comments on commit 645e090

Please sign in to comment.