Skip to content

Commit

Permalink
fix: try tarpaulin once more
Browse files Browse the repository at this point in the history
  • Loading branch information
conblem authored Feb 10, 2021
1 parent e902161 commit 2a29061
Showing 1 changed file with 3 additions and 13 deletions.
16 changes: 3 additions & 13 deletions .github/workflows/rust.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,27 +65,17 @@ jobs:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
toolchain: stable
- uses: actions/cache@v2
with:
path: |
~/.cargo/registry
~/.cargo/git
target
!**/*.gcno
!**/*.gcda
!**/*.gcov
key: ${{ runner.os }}-coverage-1-${{ hashFiles('**/Cargo.lock') }}
- uses: actions-rs/cargo@v1
- uses: actions-rs/tarpaulin@v0.1
with:
command: test
args: --all-features --no-fail-fast
env:
CARGO_INCREMENTAL: '0'
RUSTFLAGS: '-Zprofile -Ccodegen-units=1 -Cinline-threshold=0 -Clink-dead-code -Coverflow-checks=off -Cpanic=abort -Zpanic_abort_tests'
RUSTDOCFLAGS: '-Zprofile -Ccodegen-units=1 -Cinline-threshold=0 -Clink-dead-code -Coverflow-checks=off -Cpanic=abort -Zpanic_abort_tests'
- uses: actions-rs/grcov@v0.1
args: '-- --test-threads 1'
- uses: codecov/codecov-action@v1
with:
fail_ci_if_error: true
Expand Down

0 comments on commit 2a29061

Please sign in to comment.