Skip to content

Commit

Permalink
build: use fixed nightly
Browse files Browse the repository at this point in the history
  • Loading branch information
hseeberger committed Oct 22, 2023
1 parent 1e0987f commit 1afbba8
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ jobs:
- name: Install Rust toolchain
run: |
rustup update
rustup toolchain install nightly --profile minimal
rustup component add rustfmt --toolchain nightly
rustup component add clippy --toolchain nightly
rustup toolchain install nightly-2023-10-21 --profile minimal
rustup component add rustfmt --toolchain nightly-2023-10-21
rustup component add clippy --toolchain nightly-2023-10-21
- name: Install just
uses: taiki-e/install-action@v2
Expand Down
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ check:
cargo check --tests --all-features

fmt:
cargo +nightly fmt
cargo fmt

fmt_check:
cargo +nightly fmt --check
cargo --check

lint:
cargo clippy --no-deps --all-features -- -D warnings
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
[toolchain]
channel = "nightly"
channel = "nightly-2023-10-21"

0 comments on commit 1afbba8

Please sign in to comment.