mirror of
https://github.com/actix/actix-web.git
synced 2024-11-13 04:11:09 +00:00
40a4b1ccd5
Co-authored-by: Ibraheem Ahmed <ibrah1440@gmail.com>
17 lines
832 B
TOML
17 lines
832 B
TOML
[alias]
|
|
lint = "clippy --workspace --tests --examples --bins -- -Dclippy::todo"
|
|
lint-all = "clippy --workspace --all-features --tests --examples --bins -- -Dclippy::todo"
|
|
|
|
# lib checking
|
|
ci-check-min = "hack --workspace check --no-default-features"
|
|
ci-check-default = "hack --workspace check"
|
|
ci-check-default-tests = "check --workspace --tests"
|
|
ci-check-all-feature-powerset="hack --workspace --feature-powerset --skip=__compress,experimental-io-uring check"
|
|
ci-check-all-feature-powerset-linux="hack --workspace --feature-powerset --skip=__compress check"
|
|
|
|
# testing
|
|
ci-doctest-default = "test --workspace --doc --no-fail-fast -- --nocapture"
|
|
ci-doctest = "test --workspace --all-features --doc --no-fail-fast -- --nocapture"
|
|
|
|
# compile docs as docs.rs would
|
|
# RUSTDOCFLAGS="--cfg=docsrs" cargo +nightly doc --no-deps --workspace
|