mirror of
https://github.com/clap-rs/clap
synced 2024-12-04 18:19:13 +00:00
chore: Make it easy to reproduce CI docs run
This commit is contained in:
parent
844dbae96b
commit
d56d8dd59e
2 changed files with 4 additions and 1 deletions
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
|
@ -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
|
||||
|
|
3
Makefile
3
Makefile
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue