flesh/.gitlab-ci.yml
Ava Hahn bc09cb07b1
rustfmt
Signed-off-by: Ava Hahn <ava@aidanis.online>
2023-03-01 11:47:37 -08:00

27 lines
403 B
YAML

default:
image: rust:latest
fmt:
stage: build
script:
- rustup component add rustfmt
- 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