Skip to content

Commit

Permalink
CI: fix missed fmt error-catch
Browse files Browse the repository at this point in the history
  • Loading branch information
boozook committed Jul 17, 2024
1 parent 04c0c50 commit 00a88ad
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -475,9 +475,10 @@ jobs:

- name: Check
id: check
continue-on-error: true
run: >-
cargo fmt --all -- --check ||
(echo "::error::Rust format error." && exit 1)
cargo fmt --all -- --check
# (echo "::error::Rust format error." && exit 1)
- name: Format
id: format
Expand Down

0 comments on commit 00a88ad

Please sign in to comment.