Skip to content
Merged
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
9 changes: 4 additions & 5 deletions .github/workflows/ci_linux.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,27 +42,26 @@ jobs:
- name: Test default features
run: |
cargo test --workspace
rm -rf target/debug/build

- name: Test single_threaded_async
run: |
cargo test --features single_threaded_async
rm -rf target/debug/build
cargo test --features single_threaded_async

- name: Test diagram
run: |
cargo test --workspace -F=diagram
rm -rf target/debug/build
cargo test --workspace -F=diagram

- name: Test trace
run: |
cargo test --workspace -F=trace
rm -rf target/debug/build
cargo test --workspace -F=trace

- name: Test all capabilities combined
run: |
rm -rf target/
cargo test --workspace -F=maximal
rm -rf target/debug/build

- name: Build docs
run: cargo doc --no-deps --all-features
Expand Down