Add mandatory cargo_doc

Co-authored-by: Joshua Nelson <github@jyn.dev>
This commit is contained in:
infrandomness 2022-06-09 16:20:47 +02:00
parent 657386cc91
commit eaa1e444eb
3 changed files with 9 additions and 7 deletions

View file

@ -87,7 +87,7 @@ jobs:
run: bash ./ci.sh
clippy:
name: clippy
name: clippy + rustdoc
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
@ -102,6 +102,8 @@ jobs:
# run: cargo clippy --manifest-path ui_test/Cargo.toml --all-targets -- -D warnings
- name: Clippy (cargo-miri)
run: cargo clippy --manifest-path cargo-miri/Cargo.toml --all-targets -- -D warnings
- name: Rustdoc
run: RUSTDOCFLAGS="-Dwarnings" cargo doc --document-private-items
fmt:
name: formatting (ignored by bors)