Skip to content

Commit eef6b79

Browse files
committed
Update coverage workflow and .gitignore
Switched tarpaulin Docker image to use the latest tag and removed the nightly toolchain requirement in the coverage workflow. Added build_rs_cov.profraw to .gitignore to exclude coverage artifacts.
1 parent a157102 commit eef6b79

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/coverage.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ jobs:
1515
name: Code Coverage
1616
runs-on: ubuntu-latest
1717
container:
18-
image: xd009642/tarpaulin:0.27.3
18+
image: xd009642/tarpaulin:latest
1919
options: --security-opt seccomp=unconfined
2020
steps:
2121
- uses: actions/checkout@v4
2222
- name: Generate code coverage
2323
run: |
24-
cargo +nightly tarpaulin --verbose --all-features --workspace --timeout 120 --out Xml
24+
cargo tarpaulin --verbose --all-features --workspace --timeout 120 --out Xml
2525
- name: Upload to Codecov
2626
uses: codecov/codecov-action@v3
2727
with:

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,4 @@ assets/cb7d0daf60d7675081996d81393e2ae5.jpg
1111
assets/b9c93c1cd427d8f50e68dbd11ed2b000.jpg
1212

1313
docs/cookbook/book/
14+
build_rs_cov.profraw

0 commit comments

Comments
 (0)