Skip to content

Commit

Permalink
Update rust.yml
Browse files Browse the repository at this point in the history
add coverage
  • Loading branch information
jendrikw authored Aug 3, 2024
1 parent 1285c93 commit 8f4aa1b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Install Rust Toolchain
run: rustup default ${{ matrix.channel }} && rustup component add clippy
run: rustup default ${{ matrix.channel }} && rustup component add clippy && cargo install cargo-llvm-cov
- name: Build
run: cargo build --verbose --no-default-features ${{ matrix.features }}
- name: Run tests
run: cargo test --verbose --no-default-features ${{ matrix.features }}
run: cargo llvm-cov test --text --verbose --no-default-features ${{ matrix.features }}
- name: Build docs
run: cargo doc --verbose --no-default-features --no-deps ${{ matrix.features }}
- name: Run clippy
Expand Down

0 comments on commit 8f4aa1b

Please sign in to comment.