paperoni/.woodpecker.yml

21 lines
390 B
YAML
Raw Normal View History

2024-03-09 20:56:16 +00:00
steps:
build:
when:
- event: cron
- event: push
branch: main
- event: pull_request
image: docker.io/rust:latest
commands:
2024-03-09 21:08:51 +00:00
- apt-get install libssl-dev
2024-03-09 20:56:16 +00:00
- cargo build
test:
when:
- event: cron
- event: push
branch: main
- event: pull_request
image: docker.io/rust:latest
commands:
- cargo test