podal/.woodpecker.yml
Paul Campbell 3ba5230e67
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
build(woodpecker): run ci on next branch only and run full build
2024-05-08 08:36:37 +01:00

14 lines
358 B
YAML

steps:
build:
when:
- event: push
branch: next
image: rust:latest
pull: true
commands:
- rustup component add rustfmt clippy
- cargo --version
- cargo fmt --check
- cargo clippy --fix -- -Dwarnings -W clippy::nursery -W clippy::unwrap_used -W clippy::expect_used
- cargo test
- cargo build