26 lines
366 B
YAML
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
|