Skip to content

Commit

Permalink
only run codecov on the library (for now)
Browse files Browse the repository at this point in the history
  • Loading branch information
folkertdev committed Nov 6, 2024
1 parent 1a9b67b commit 6bfee42
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -83,11 +83,11 @@ jobs:
- name: cargo build
run: cargo build --target ${{matrix.target}} ${{ matrix.features }}
- name: cargo nextest # reports segfaults in a helpful way
run: cargo nextest run --target ${{matrix.target}} ${{ matrix.features }} --no-fail-fast
run: cargo nextest run --target ${{matrix.target}} ${{ matrix.features }} --no-fail-fast --workspace
env:
RUST_BACKTRACE: 1
- name: cargo test with llvm-cov
run: cargo llvm-cov --target ${{matrix.target}} ${{ matrix.features }} --lcov --output-path lcov.info
run: cargo llvm-cov --target ${{matrix.target}} ${{ matrix.features }} --lcov --output-path lcov.info --ignore-filename-regex "bzip2recover.rs|bzip2\.rs|test-libbzip2" --workspace
env:
RUST_BACKTRACE: 1
if: matrix.os != 'windows-2022'
Expand Down

0 comments on commit 6bfee42

Please sign in to comment.