We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0fbff0 commit bdf3dcfCopy full SHA for bdf3dcf
.github/workflows/ci.yml
@@ -21,7 +21,9 @@ jobs:
21
# FIXME(eddyb) `style_edition = "2024"` in `rustfmt.toml` is what keeps
22
# this on `nightly`, should switch to `stable` when that stabilizes.
23
toolchain: nightly
24
- override: true
+ # HACK(eddyb) allow `+nightly` to work without breaking the ability
25
+ # to use `rust-toolchain.toml` later.
26
+ override: false
27
28
# run cargo fetch w/ --locked to verify Cargo.lock is up-to-date
29
- run: cargo fetch --locked
@@ -30,7 +32,7 @@ jobs:
30
32
- name: check rustfmt
31
33
run: |
34
rustup component add rustfmt
- cargo fmt -- --check --color always
35
+ cargo +nightly fmt -- --check --color always
36
37
# run clippy to verify we have no warnings
38
- name: cargo clippy
0 commit comments