We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 417ad73 commit ccfb06fCopy full SHA for ccfb06f
.github/workflows/testing.yaml
@@ -65,6 +65,13 @@ jobs:
65
name: Run Lint Checks
66
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
67
68
+ - id: docs
69
+ name: Lint Documentation
70
+ env:
71
+ RUSTDOCFLAGS: "-D warnings"
72
+ run: cargo doc --no-deps --bins --examples --workspace --all-features
73
+
74
75
unit:
76
name: Units
77
runs-on: ubuntu-latest
@@ -96,10 +103,6 @@ jobs:
96
103
with:
97
104
tool: cargo-llvm-cov, cargo-nextest
98
105
99
- - id: docs
100
- name: Build Documentation
101
- run: cargo doc --no-deps --bins --examples --workspace --all-features
102
-
106
- id: test-docs
107
name: Run Documentation Tests
108
run: cargo test --doc
0 commit comments