Apply suggestions from code review

Co-authored-by: str4d <thestr4d@gmail.com>
This commit is contained in:
Kris Nuttycombe 2023-02-16 11:02:47 -07:00 committed by GitHub
parent dff6be7221
commit 39fe209e21
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -12,7 +12,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Run tests
run: cargo test --all-features --verbose --release --all
run: cargo test --all-features --verbose --workspace
- name: Verify working directory is clean
run: git diff --exit-code
@ -23,7 +23,7 @@ jobs:
- uses: actions/checkout@v3
# Build benchmarks to prevent bitrot
- name: Build benchmarks
run: cargo build --all --benches
run: cargo build --workspace --benches
doc-links:
name: Intra-doc links
@ -33,7 +33,7 @@ jobs:
- run: cargo fetch
# Requires #![deny(rustdoc::broken_intra_doc_links)] in crates.
- name: Check intra-doc links
run: cargo doc --all --document-private-items
run: cargo doc --workspace --document-private-items
fmt:
name: Rustfmt