👷 Add cargo deny tool
All checks were successful
ci/woodpecker/pr/validate Pipeline was successful

This commit is contained in:
2025-04-27 11:08:34 +02:00
parent 18ee33d512
commit 60756b7e72

View File

@@ -1,6 +1,6 @@
steps: steps:
- name: format - name: format
image: rust:latest image: rust:1.86
commands: | commands: |
rustup component add rustfmt rustup component add rustfmt
cargo fmt --all --check cargo fmt --all --check
@@ -24,6 +24,12 @@ steps:
from_secret: registry-password from_secret: registry-password
dry-run: true dry-run: true
- name: audit - depedencies
image: rust:1.86
command: |
cargo install --locked cargo-deny
cargo deny check
when: when:
- event: pull_request - event: pull_request
# - event: push # - event: push