Skip to content

Commit

Permalink
ci: move doc tests to unit section
Browse files Browse the repository at this point in the history
  • Loading branch information
da2ce7 committed Oct 13, 2023
1 parent 308f490 commit 7dbca2b
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/testing.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,6 @@ jobs:
name: Run Lint Checks
run: cargo clippy --tests --benches --examples --workspace --all-targets --all-features -- -D clippy::correctness -D clippy::suspicious -D clippy::complexity -D clippy::perf -D clippy::style -D clippy::pedantic

- id: doc
name: Run Documentation Checks
run: cargo test --doc

unit:
name: Units
runs-on: ubuntu-latest
Expand Down Expand Up @@ -100,6 +96,14 @@ jobs:
with:
tool: cargo-llvm-cov, cargo-nextest

- id: docs
name: Build Documentation
run: cargo doc --no-deps --bins --examples --workspace --all-features

- id: test-docs
name: Run Documentation Tests
run: cargo test --doc

- id: test
name: Run Unit Tests
run: cargo test --tests --benches --examples --workspace --all-targets --all-features
Expand Down

0 comments on commit 7dbca2b

Please sign in to comment.