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 962fa57 commit 771dddaCopy full SHA for 771ddda
.github/workflows/rust.yml
@@ -8,6 +8,7 @@ on:
8
9
env:
10
CARGO_TERM_COLOR: always
11
+ RUSTDOCFLAGS: -D warnings --cfg docsrs
12
13
jobs:
14
build:
@@ -37,6 +38,9 @@ jobs:
37
38
run: cd $(find target/package/ -maxdepth 1 -mindepth 1 -type d) && cargo test
39
- name: Test package without features
40
run: cd $(find target/package/ -maxdepth 1 -mindepth 1 -type d) && cargo test --no-default-features
41
+ - name: Build docs
42
+ if: matrix.rust == 'nightly'
43
+ run: cargo doc --all-features --verbose
44
msrv:
45
runs-on: ubuntu-latest
46
steps:
0 commit comments