Files
qpismont 6a21c7d6c3
ci/woodpecker/push/tests Pipeline failed
Renforce woodpecker tests
2026-07-31 20:25:37 +00:00

30 lines
678 B
YAML

when:
event:
- push
steps:
- name: fmt
image: rust:1.97
commands:
- rustup component add rustfmt
- cargo fmt --all -- --check
- name: clippy
image: rust:1.97
commands:
- rustup component add clippy
- cargo clippy --workspace --all-targets --all-features -- -D warnings
- name: test
image: rust:1.97
commands:
- cargo test --workspace --all-targets
- name: container-build
image: quay.io/buildah/stable
privileged: true
volumes:
- /data/woodpecker-builds:/data
commands:
- buildah bud -f Containerfile -t herald-ci .