Skip to content

Commit

Permalink
Replace globbing
Browse files Browse the repository at this point in the history
  • Loading branch information
maneatingape committed Dec 29, 2024
1 parent ef6b4ed commit 08b4213
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- uses: actions/checkout@v4
- run: rustup install nightly --profile default
- run: rustup default nightly
- run: cargo fmt --check -- **/*.rs
- run: cargo fmt --check -- `find . -name "*.rs"`
- run: cargo clippy --all-targets --all-features -- --deny warnings

test-stable:
Expand Down
2 changes: 1 addition & 1 deletion justfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
lint:
cargo fmt -- **/*.rs
cargo fmt -- `find . -name "*.rs"`
cargo clippy --all-targets --all-features

docs:
Expand Down

0 comments on commit 08b4213

Please sign in to comment.