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
10 changes: 8 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ jobs:
- name: Clippy
run: cargo clippy --no-deps --all-targets --all-features

- name: Clippy (Loom configuration)
run: RUSTFLAGS="--cfg loom" cargo clippy --no-deps --lib --tests

- name: Documentation
run: cargo doc --no-deps --all-features

Expand All @@ -61,7 +64,10 @@ jobs:
uses: taiki-e/install-action@nextest

- name: Test
run: cargo nextest run --all-features
run: cargo nextest run

- name: Loom tests
run: RUSTFLAGS="--cfg loom" cargo test --lib loom_tests -- --test-threads=1

- name: Documentation tests
run: cargo test --doc --all-features
run: cargo test --doc
Loading