summaryrefslogtreecommitdiffstats
path: root/.builds/ci.yml
blob: a085bcd6545887d4eb73e8ffdc66c0859e2116a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
image: archlinux
packages:
  - rust
sources:
  - https://git.sr.ht/~tobyvin/projectr
tasks:
  - build: |
      cd projectr
      cargo build --workspace --all-features
  - test: |
      cd projectr
      cargo test --workspace --all-features
  - clippy: |
      cd projectr
      cargo clippy --workspace --all-features --no-deps -- -D warnings
  - fmt: |
      cd projectr
      cargo fmt --all -- --check