yorokobot/.build.yml

25 lines
435 B
YAML
Raw Normal View History

2022-11-21 06:11:41 +01:00
image: alpine/edge
2022-11-21 06:22:01 +01:00
packages:
2022-11-21 06:24:56 +01:00
- curl
2022-11-21 06:11:41 +01:00
sources:
- https://git.sr.ht/~victormignot/yorokobot
tasks:
- setup: |
2022-11-21 06:24:56 +01:00
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
2022-11-21 06:22:01 +01:00
rustup toolchain install stable
2022-11-21 06:11:41 +01:00
rustup default stable
- format-check: |
cd yorokobot
cargo fmt --check
- lint-check: |
cd yorokobot
cargo clippy
- check-build: |
cd yorokobot
cargo check