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 1818419 commit 55e3805Copy full SHA for 55e3805
.github/workflows/main.yml
@@ -50,6 +50,17 @@ jobs:
50
rustup update $TOOLCHAIN --no-self-update && rustup default $TOOLCHAIN
51
shell: bash
52
if: matrix.build == 'msrv'
53
+ - name: Run cargo doc, deny warnings
54
+ env:
55
+ RUSTDOCFLAGS: "-D warnings"
56
+ run: |
57
+ cargo doc -p bzip2-sys --no-deps
58
+ cargo doc -p bzip2 --no-deps
59
+ - name: Run cargo doc, deny warnings (libbz2-rs-sys)
60
61
+ RUSTDOCFLAGS: "-Dwarnings"
62
+ if: matrix.build != 'msrv'
63
+ run: cargo doc -p bzip2 --no-deps --no-default-features --features libbz2-rs-sys
64
- run: cargo test
65
- run: cargo test --no-default-features --features libbz2-rs-sys
66
if: matrix.build != 'msrv'
0 commit comments