Skip to content

Commit 08b4213

Browse files
committed
Replace globbing
1 parent ef6b4ed commit 08b4213

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/checks.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- uses: actions/checkout@v4
1414
- run: rustup install nightly --profile default
1515
- run: rustup default nightly
16-
- run: cargo fmt --check -- **/*.rs
16+
- run: cargo fmt --check -- `find . -name "*.rs"`
1717
- run: cargo clippy --all-targets --all-features -- --deny warnings
1818

1919
test-stable:

justfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
lint:
2-
cargo fmt -- **/*.rs
2+
cargo fmt -- `find . -name "*.rs"`
33
cargo clippy --all-targets --all-features
44

55
docs:

0 commit comments

Comments
 (0)