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 377151a commit 5cad66cCopy full SHA for 5cad66c
.github/workflows/auto-format.yaml
.github/workflows/ci.yaml
@@ -307,13 +307,15 @@ jobs:
307
run: python -I whats_left.py
308
309
lint:
310
- name: Check Rust code with clippy
+ name: Check Rust code with rustfmt and clippy
311
runs-on: ubuntu-latest
312
steps:
313
- uses: actions/checkout@v5
314
- uses: dtolnay/rust-toolchain@stable
315
with:
316
- components: clippy
+ components: rustfmt, clippy
317
+ - name: run rustfmt
318
+ run: cargo fmt --check
319
- name: run clippy on wasm
320
run: cargo clippy --manifest-path=wasm/lib/Cargo.toml -- -Dwarnings
321
- uses: actions/setup-python@v6
0 commit comments