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 f027259 commit cf2dae9Copy full SHA for cf2dae9
.github/workflows/ci.yaml
@@ -5,6 +5,7 @@ on: [ push, pull_request ]
5
env:
6
CARGO_TERM_COLOR: 'always'
7
CARGO_TERM_VERBOSE: 'true'
8
+ RUSTDOCFLAGS: '-Dwarnings'
9
RUSTFLAGS: '-Dwarnings'
10
11
jobs:
@@ -54,6 +55,10 @@ jobs:
54
55
if: ${{ !cancelled() && steps.build.outcome == 'success' }} # always run if build succeeds
56
run: cargo test --workspace --all-features
57
58
+ - name: rustdoc
59
+ if: ${{ !cancelled() && steps.build.outcome == 'success' }} # always run if build succeeds
60
+ run: cargo doc --no-deps
61
+
62
examples-linux:
63
name: Examples (Linux)
64
runs-on: ubuntu-latest
0 commit comments