stages:
- check
- test
variables:
CARGO_TERM_COLOR: always
clippy:
stage: check
image: rust:latest
script:
- rustup component add clippy
- cargo clippy -- -D warnings
fmt:
stage: check
image: rust:latest
script:
- rustup component add rustfmt
- cargo fmt -- --check
test:
stage: test
image: rust:latest
script:
- cargo test --verbose