Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 16 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,24 @@ jobs:
- name: Run Clippy
run: cargo clippy --all-targets --all-features -- -D warnings

- name: Run offline tests
- name: Run offline tests on MSRV
if: matrix.rust == '1.88.0'
env:
CARGO_NET_OFFLINE: "true"
run: cargo test --all-targets --locked

- name: Install coverage tooling
if: matrix.rust == 'stable'
run: |
rustup component add llvm-tools-preview
cargo install cargo-llvm-cov --version 0.9.0 --locked

- name: Run offline tests with coverage
if: matrix.rust == 'stable'
env:
CARGO_NET_OFFLINE: "true"
run: cargo llvm-cov --all-targets --all-features --locked --fail-under-lines 93
Comment thread
coderabbitai[bot] marked this conversation as resolved.

- name: Build release binary
run: cargo build --release --locked

Expand Down
Loading
Loading