We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6340647 + 0c8435b commit c55a347Copy full SHA for c55a347
.github/workflows/ci.yml
@@ -24,7 +24,7 @@ jobs:
24
- name: Check formatting
25
run: |
26
nix develop --command cargo fmt -- --check
27
- nix develop --command find tests -name *.rs -exec rustfmt {} --check \;
+ nix develop --command bash -c 'find tests -name "*.rs" -print0 | xargs -0 -n1 rustfmt --check'
28
29
- name: Run clippy
30
run: nix develop --command cargo clippy -- -D warnings
0 commit comments