f3-rs/.woodpecker.yml

19 lines
458 B
YAML
Raw Normal View History

2023-10-24 19:47:44 +05:30
steps:
test:
image: rust
commands:
- rustup component add rustfmt
- rustup component add clippy
- make lint
- make test
- make doc
2023-10-24 19:47:44 +05:30
publish:
image: python
when:
event: [push, tag, deployment]
branch: master
commands:
- apt update && apt-get -y --no-install-recommends install tar gpg curl wget git
- make ci-deploy
secrets: [ GITEA_WRITE_DEPLOY_KEY, LIBREPAGES_DEPLOY_SECRET ]