~cassaundra/nonbin

c2e2c4c98e3227e44e8030c80eac6a927010e486 — cassaundra 1 year, 6 months ago 9539ea0 main
ci: add .build.yml
1 files changed, 21 insertions(+), 0 deletions(-)

A .build.yml
A .build.yml => .build.yml +21 -0
@@ 0,0 1,21 @@
image: archlinux
packages:
  - rustup
sources:
  - https://git.sr.ht/~cassaundra/nonbin
tasks:
  - setup: |
      rustup toolchain install nightly
      rustup default nightly
  - build: |
      cd nonbin
      cargo build
  - test: |
      cd nonbin
      cargo test
  - clippy: |
      cd nonbin
      cargo clippy
  - fmt: |
      cd nonbin
      cargo fmt --check