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
11 changes: 6 additions & 5 deletions .github/workflows/rust-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,13 @@ jobs:
- uses: dtolnay/rust-toolchain@stable
- run: cargo fetch
- name: cargo test build
# Note the use of release here means longer compile time, but much
# faster test execution time. If you don't have any heavy tests it
# might be faster to take off release and just compile in debug
run: cargo build --tests --release
run: cargo build --tests
- name: cargo test
run: cargo test --release
run: cargo test
- name: cargo test build ansi
run: cargo build --tests --features ansi_logs
- name: cargo test ansi
run: cargo test --features ansi_logs

deny-check:
name: cargo-deny
Expand Down
Loading