yorokobot/.build.yml
2022-11-21 00:19:16 -05:00

22 lines
328 B
YAML

image: alpine/edge
sources:
- https://git.sr.ht/~victormignot/yorokobot
tasks:
- setup: |
apk add rustup
rustup default stable
- format-check: |
cd yorokobot
cargo fmt --check
- lint-check: |
cd yorokobot
cargo clippy
- check-build: |
cd yorokobot
cargo check