We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef6b4ed commit 08b4213Copy full SHA for 08b4213
.github/workflows/checks.yml
@@ -13,7 +13,7 @@ jobs:
13
- uses: actions/checkout@v4
14
- run: rustup install nightly --profile default
15
- run: rustup default nightly
16
- - run: cargo fmt --check -- **/*.rs
+ - run: cargo fmt --check -- `find . -name "*.rs"`
17
- run: cargo clippy --all-targets --all-features -- --deny warnings
18
19
test-stable:
justfile
@@ -1,5 +1,5 @@
1
lint:
2
- cargo fmt -- **/*.rs
+ cargo fmt -- `find . -name "*.rs"`
3
cargo clippy --all-targets --all-features
4
5
docs:
0 commit comments