Ensure that the linters and builds pass before merging a PR #7

Merged
Adrien merged 18 commits from ci/add-checks-on-mr into develop 2025-05-02 07:41:58 +00:00
3 changed files with 33 additions and 20 deletions
Showing only changes of commit a9996d448c - Show all commits

View File

@@ -14,14 +14,6 @@ steps:
# Not ready to block PR on fail
failure: ignore
- name: audit - depedencies
image: rust:1.86
commands: |
cargo install --locked cargo-deny
cargo deny check
# Not ready to block PR on fail
failure: ignore
- name: build - web (dockerize)
image: woodpeckerci/plugin-kaniko
settings:
@@ -32,6 +24,14 @@ steps:
from_secret: registry-password
dry-run: true
- name: audit - dependencies
image: rust:1.86
commands: |
cargo install --locked cargo-deny
cargo deny check
# Not ready to block PR on fail
failure: ignore
when:
- event: pull_request
# - event: push