Skip to content

Commit

Permalink
lint: continue on error
Browse files Browse the repository at this point in the history
  • Loading branch information
vrutkovs committed Dec 24, 2024
1 parent ccbc8a8 commit 8f48cc4
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -126,15 +126,19 @@ jobs:
cargo install --locked cargo-audit || true
cargo install --locked cargo-pants || true
- name: cargo deny check
continue-on-error: true
run: |
cargo deny check
- name: cargo outdated
continue-on-error: true
run: |
cargo outdated
- name: cargo udeps
continue-on-error: true
run: |
cargo udeps
- name: cargo audit
continue-on-error: true
run: |
rm -rf ~/.cargo/advisory-db
cargo audit
Expand Down

0 comments on commit 8f48cc4

Please # to comment.