Merge rust-bitcoin/rust-bitcoin#2649: just: Use pinned nightly
288ed33afa
just: Use pinned nightly (Tobin C. Harding) Pull request description: Use the nightly version that we use in CI when running `just` commands that use the nightly toolchain. ACKs for top commit: apoelstra: ACK288ed33afa
sanket1729: utACK288ed33afa
Tree-SHA512: f19f8e41025a9c78d1d86ef13b2924321e1fad7e11c815960ea197d127a79423ca5f6bb447e878fc69c8bf9d34e278ca27f9d1bd5a75ca0a8a7539a7fa22c2c2
This commit is contained in:
commit
6ec93ce685
4
justfile
4
justfile
|
@ -11,11 +11,11 @@ check:
|
||||||
|
|
||||||
# Lint everything.
|
# Lint everything.
|
||||||
lint:
|
lint:
|
||||||
cargo +nightly clippy --workspace --all-targets --all-features -- --deny warnings
|
cargo +$(cat .github/nightly-version) clippy --workspace --all-targets --all-features -- --deny warnings
|
||||||
|
|
||||||
# Check the formatting
|
# Check the formatting
|
||||||
format:
|
format:
|
||||||
cargo +nightly fmt --all --check
|
cargo +$(cat .github/nightly-version) fmt --all --check
|
||||||
|
|
||||||
# Quick and dirty CI useful for pre-push checks.
|
# Quick and dirty CI useful for pre-push checks.
|
||||||
sane: lint
|
sane: lint
|
||||||
|
|
Loading…
Reference in New Issue