Skip to content

Commit

Permalink
feat: reintroduce coverage with tarpaulin and codecov
Browse files Browse the repository at this point in the history
  • Loading branch information
YeungOnion committed May 15, 2024
1 parent cfdf905 commit 1f021d9
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Coverage

on:
push:
branches: [ master, test-ci ]
pull:
branches: [ master, test-ci ]
jobs:
test:
name: Coverage
runs-on: ubuntu-latest
container:
image: xd009642/tarpaulin:develop-nightly
options: --security-opt seccomp=unconfined
steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Generate code coverage
run: |
cargo +nightly tarpaulin --verbose --all-features --workspace --timeout 120 --out xml
- name: Upload to codecov.io
uses: codecov/codecov-action@v2
with:
# use_oidc: true
# token: ${{secrets.CODECOV_TOKEN}} # not required for public repos
fail_ci_if_error: true

0 comments on commit 1f021d9

Please sign in to comment.