chore: Make it easy to reproduce CI docs run

This commit is contained in:
Ed Page 2022-06-03 11:01:53 -05:00
parent 844dbae96b
commit d56d8dd59e
2 changed files with 4 additions and 1 deletions

View file

@ -144,7 +144,7 @@ jobs:
- name: Check documentation
env:
RUSTDOCFLAGS: -D warnings
run: cargo doc --workspace --all-features --no-deps --document-private-items
run: make doc
rustfmt:
name: rustfmt
runs-on: ubuntu-latest

View file

@ -35,3 +35,6 @@ clippy-%:
test-ui-%:
cargo +${MSRV} test --test derive_ui --features derive ${_FEATURES_${@:test-ui-%=%}}
doc:
cargo doc --workspace --all-features --no-deps --document-private-items