We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca1fa3a commit a3e1829Copy full SHA for a3e1829
.github/workflows/ci.yml
@@ -45,3 +45,16 @@ jobs:
45
with:
46
components: clippy
47
- run: cargo clippy --all --all-targets -- --deny warnings
48
+
49
+ rustdoc:
50
+ name: rustdoc
51
+ runs-on: ubuntu-latest
52
+ env: {"RUSTDOCFLAGS": "-D warnings"}
53
+ steps:
54
+ - uses: actions/checkout@v4
55
+ - uses: dtolnay/rust-toolchain@nightly
56
+ # docs.rs builds documentation with:
57
+ # - nightly rust
58
+ # - all features
59
+ # - cargo rustdoc, not cargo doc
60
+ - run: cargo +nightly rustdoc --all-features
0 commit comments