Skip to content

Commit

Permalink
Fix CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
benfrankel committed Aug 1, 2024
1 parent 95abaa4 commit 8a9e5f8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
uses: Leafwing-Studios/cargo-cache@v2

- name: Run Clippy lints
run: cargo clippy --workspace --all-features --all-targets -- --deny warnings
run: cargo clippy --workspace --all-targets -- --deny warnings

# Check documentation.
doc:
Expand All @@ -71,7 +71,7 @@ jobs:
uses: Leafwing-Studios/cargo-cache@v2

- name: Check documentation
run: cargo doc --workspace --all-features --document-private-items --no-deps
run: cargo doc --workspace --document-private-items --no-deps

# Run tests.
test:
Expand All @@ -93,6 +93,6 @@ jobs:

- name: Run tests
run: |
cargo test --workspace --all-features --all-targets
cargo test --workspace --all-targets
# TODO: Workaround for https://github.com/rust-lang/cargo/issues/6669
cargo test --workspace --all-features --doc
cargo test --workspace --doc

0 comments on commit 8a9e5f8

Please sign in to comment.