yorokobot/.build.yml

23 lines
328 B
YAML
Raw Normal View History

2022-11-21 00:48:26 -05:00
image: alpine/edge
2022-11-21 00:22:01 -05:00
packages:
2022-11-21 00:48:26 -05:00
- rust
- cargo
2022-11-21 00:51:15 -05:00
- rustfmt
2022-11-21 00:56:06 -05:00
- rust-clippy
2022-11-21 00:11:41 -05:00
sources:
- https://git.sr.ht/~victormignot/yorokobot
2022-11-21 00:33:55 -05:00
tasks:
2022-11-21 00:11:41 -05:00
- format-check: |
cd yorokobot
cargo fmt --check
- lint-check: |
cd yorokobot
cargo clippy
- check-build: |
cd yorokobot
cargo check