We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ff9bab commit 36ff961Copy full SHA for 36ff961
.github/workflows/main.yml
@@ -119,3 +119,16 @@ jobs:
119
run: |
120
cargo test --locked --manifest-path simplicity-sys/Cargo.toml
121
cargo test --locked --workspace --all-features
122
+
123
+ docs:
124
+ name: Docs
125
+ runs-on: ubuntu-latest
126
+ steps:
127
+ - name: Checkout Crate
128
+ uses: actions/checkout@v4
129
+ - name: Checkout Toolchain
130
+ uses: dtolnay/rust-toolchain@nightly
131
+ - name: Check that documentation builds without errors
132
+ env:
133
+ RUSTDOCFLAGS: "--cfg docsrs -D warnings -D rustdoc::broken-intra-doc-links"
134
+ run: cargo doc -j1 --all-features
0 commit comments