aboutsummaryrefslogtreecommitdiffstats
path: root/.build.yml
blob: 55e2d145753d73cc0a112dbc56f1d26c76e2f19a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
image: alpine/latest
packages:
  - rust
  - cargo
  - rust-clippy
  - rustfmt
  - openssl-dev
sources:
  - https://git.sr.ht/~tobyvin/zone
tasks:
  - clippy: |
      cd zone
      cargo clippy --workspace --all-features --no-deps -- -D warnings
  - test: |
      cd zone
      cargo test --workspace --all-features
  - fmt: |
      cd zone
      cargo fmt --all -- --check