We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c7bea73 commit 3d2581eCopy full SHA for 3d2581e
1 file changed
.github/workflows/rust.yml
@@ -47,13 +47,14 @@ jobs:
47
name: Rustfmt
48
runs-on: ubuntu-latest
49
steps:
50
- - uses: actions/checkout@v4
51
- - name: Install Rust
52
- uses: dtolnay/rust-toolchain@stable
53
- with:
54
- components: rustfmt
55
- - name: Check formatting
56
- run: cargo fmt --all -- --check
+ - uses: actions/checkout@v4
+ - name: Install Rust nightly with rustfmt
+ uses: dtolnay/rust-toolchain@nightly
+ with:
+ components: rustfmt
+ - name: Check formatting
+ run: cargo fmt --all -- --check
57
+
58
59
format:
60
name: TOML Check Format
0 commit comments