22 lines
328 B
YAML
22 lines
328 B
YAML
image: alpine/edge
|
|
packages:
|
|
- rust
|
|
- cargo
|
|
- rustfmt
|
|
- rust-clippy
|
|
|
|
sources:
|
|
- https://git.sr.ht/~victormignot/yorokobot
|
|
|
|
tasks:
|
|
- format-check: |
|
|
cd yorokobot
|
|
cargo fmt --check
|
|
|
|
- lint-check: |
|
|
cd yorokobot
|
|
cargo clippy
|
|
|
|
- check-build: |
|
|
cd yorokobot
|
|
cargo check
|