podal/.woodpecker.yml
Paul Campbell b5a3f5ece2
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/pr/woodpecker Pipeline was successful
woodpeckerci: remove when clause
It's preventing build from running when pushing to a PR branch
2023-07-29 20:30:57 +01:00

10 lines
287 B
YAML

steps:
build:
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