flesh/.gitlab-ci.yml
Ava Hahn 06f9a82b01
fix ci
Signed-off-by: Ava Hahn <ava@aidanis.online>
2023-03-01 11:23:34 -08:00

26 lines
368 B
YAML

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