Skip to content

Commit

Permalink
ci: speed up fast tests
Browse files Browse the repository at this point in the history
  • Loading branch information
vthib committed Jul 1, 2024
1 parent a5deb87 commit 786fd51
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ jobs:
- uses: dtolnay/rust-toolchain@stable
- run: cargo test
- run: cargo test --features diff
- run: cargo test --features fast
# Use release mode, otherwise the const table
# used with the fast feature leads to very slow tests.
- run: cargo test --release --features fast

clippy:
name: Clippy
Expand Down Expand Up @@ -56,4 +58,6 @@ jobs:
target: s390x-unknown-linux-gnu
- run: cargo test
- run: cargo test --features diff
- run: cargo test --features fast
# Use release mode, otherwise the const table
# used with the fast feature leads to very slow tests.
- run: cargo test --release --features fast

0 comments on commit 786fd51

Please sign in to comment.