We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e66304c commit 0787f0aCopy full SHA for 0787f0a
.github/workflows/coverage.yml
@@ -8,12 +8,8 @@ jobs:
8
tarpaulin:
9
runs-on: ubuntu-latest
10
steps:
11
- - uses: actions/checkout@v2
12
- - uses: actions-rs/toolchain@v1
13
- with:
14
- toolchain: nightly
15
- override: true
+ - uses: actions/checkout@v4
+ - run: rustup default nightly
16
- run: cargo install cargo-tarpaulin
17
- - run: >
18
- cd lib && cargo tarpaulin --coveralls=${{ secrets.COVERALLS_TOKEN }}
19
- --exclude-files=fuzz --exclude-files=tests --exclude-files=macro
+ - run: cargo tarpaulin --coveralls=${{ secrets.COVERALLS_TOKEN }} --include-files=src/lib.rs
+ working-directory: lib
0 commit comments