We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fed5ea8 commit 53580c1Copy full SHA for 53580c1
.github/workflows/ci.yml
@@ -116,8 +116,11 @@ jobs:
116
rustup override set nightly
117
- name: Formatting (miri, ui_test)
118
run: cargo fmt --all --check
119
- - name: Formatting (cargo-miri)
120
- run: cargo fmt --manifest-path cargo-miri/Cargo.toml --all --check
+ - name: Formatting (everything else)
+ # TODO: Add `tests` (work in progress).
121
+ # Maybe change to `find . -name '*.rs'`, superseding the previous step.
122
+ run: find bench-cargo-miri benches cargo-miri test-cargo-miri -name '*.rs'
123
+ | xargs rustfmt --edition=2021 --config-path ./rustfmt.toml --check
124
125
# These jobs doesn't actually test anything, but they're only used to tell
126
# bors the build completed, as there is no practical way to detect when a
0 commit comments