Skip to content

Commit

Permalink
Fix format CI
Browse files Browse the repository at this point in the history
  • Loading branch information
AurevoirXavier committed Jul 17, 2024
1 parent 73c3146 commit d71b100
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,10 @@ jobs:
clippy_flags: --workspace --all-features --all-targets --locked
- name: Cargo fmt
if: matrix.action == 'fmt'
run: cargo fmt --all -- --check
run: |
rustup toolchain install nightly
rustup component add rustfmt --toolchain nightly
cargo +nightly fmt --all -- --check
- name: Cargo test
if: matrix.action == 'test'
run: cargo test --profile ci-dev --workspace --all-features --all-targets --locked
Expand Down

0 comments on commit d71b100

Please sign in to comment.