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 6e673a6 commit d610c0bCopy full SHA for d610c0b
.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
10
jobs:
11
test-linux:
@@ -53,6 +54,10 @@ jobs:
53
54
if: ${{ !cancelled() && steps.build.outcome == 'success' }} # always run if build succeeds
55
run: cargo test --workspace --all-features
56
57
+ - name: rustdoc
58
+ if: ${{ !cancelled() && steps.build.outcome == 'success' }} # always run if build succeeds
59
+ run: cargo doc --no-deps
60
+
61
examples-linux:
62
name: Examples (Linux)
63
runs-on: ubuntu-latest
0 commit comments