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:
    ACK 288ed33afa
  sanket1729:
    utACK 288ed33afa

Tree-SHA512: f19f8e41025a9c78d1d86ef13b2924321e1fad7e11c815960ea197d127a79423ca5f6bb447e878fc69c8bf9d34e278ca27f9d1bd5a75ca0a8a7539a7fa22c2c2
This commit is contained in:
Andrew Poelstra 2024-04-02 23:25:55 +00:00
commit 6ec93ce685
No known key found for this signature in database
GPG Key ID: C588D63CE41B97C1
1 changed files with 2 additions and 2 deletions

View File

@ -11,11 +11,11 @@ check:
# Lint everything.
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
format:
cargo +nightly fmt --all --check
cargo +$(cat .github/nightly-version) fmt --all --check
# Quick and dirty CI useful for pre-push checks.
sane: lint