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 09ea2f0Copy full SHA for 09ea2f0
.github/workflows/coverage.yml
@@ -3,17 +3,15 @@ name: Coverage
3
on:
4
push:
5
branches: [main]
6
+ pull_request: # TODO: Remove
7
+ branches: [main]
8
9
jobs:
10
tarpaulin:
11
runs-on: ubuntu-latest
12
steps:
- - uses: actions/checkout@v2
- - 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