yorokobot/.build.yml
2022-11-21 00:33:55 -05:00

24 lines
365 B
YAML

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