Skip to content

Commit

Permalink
add codecov report support
Browse files Browse the repository at this point in the history
  • Loading branch information
Will Krause committed Dec 5, 2023
1 parent e637a31 commit 9e3b622
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Test and coverage

on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run coverage
run: go test ./... -race -coverprofile=coverage.out -covermode=atomic
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
if: success() || failure()
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: false
files: ./coverage.out
move_coverage_to_trash: true

0 comments on commit 9e3b622

Please sign in to comment.