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