podal/.woodpecker.yml

16 lines
374 B
YAML
Raw Normal View History

2023-07-28 19:42:26 +01:00
when:
- event: pull_request
repo: kemitix/podal
- event: push
branch: main
2023-07-28 19:36:08 +01:00
steps:
2023-07-25 16:58:17 +01:00
build:
image: rust:latest
pull: true
2023-07-25 16:58:17 +01:00
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