Skip to content

Commit

Permalink
Fix Code Validation CI
Browse files Browse the repository at this point in the history
  • Loading branch information
pvshvp-oss committed Mar 11, 2024
1 parent 6416b45 commit 827237a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/code_validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,15 +95,19 @@ jobs:
id: cargo_fmt_step
if: ${{ matrix.task == 'fmt' }}
run: cargo fmt --verbose -- --check
continue-on-error: true
- name: 📎 Cargo Clippy Step
id: cargo_clippy_step
if: ${{ matrix.task == 'clippy' }}
run: cargo clippy --workspace --target ${{ matrix.compilation_target }} -- -D warnings
continue-on-error: true
- name: ✅ Cargo Check Step
id: cargo_check_step
if: ${{ matrix.task == 'check' }}
run: cargo check --workspace --target ${{ matrix.compilation_target }}
continue-on-error: true
- name: 🧪 Cargo Test Step
id: cargo_test_step
if: ${{ matrix.task == 'test' }}
run: cargo test --workspace --target ${{ matrix.compilation_target }}
continue-on-error: true

0 comments on commit 827237a

Please sign in to comment.