yorokobot/.build.yml

22 lines
310 B
YAML
Raw Normal View History

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