flesh/.gitlab-ci.yml
Ava Hahn a489cb85c9
update CI with more phases
Signed-off-by: Ava Hahn <ava@aidanis.online>
2023-03-01 11:17:33 -08:00

26 lines
366 B
YAML

default:
image: rust:latest
fmt:
stage: lint
script:
- rustfmt --check tests/*
- rustfmt --check src/*.rs
- rustfmt --check src/stl/*
- rustfmt --check src/bin/*
lint:
stage: lint
script:
- cargo clippy
allow_failure: true
compile:
stage: build
script:
- cargo build
unit-tests:
stage: test
script:
- cargo test