mirror of
https://gitlab.com/Anson-Projects/shuttle-christmas-code-hunt-2023.git
synced 2025-06-15 22:56:41 +00:00
19 lines
246 B
YAML
19 lines
246 B
YAML
stages:
|
|
- test
|
|
|
|
image: rust:latest
|
|
|
|
before_script:
|
|
- rustup component add clippy
|
|
- rustup component add rustfmt
|
|
|
|
clippy:
|
|
stage: test
|
|
script:
|
|
- cargo clippy -- -D warnings
|
|
|
|
rustfmt:
|
|
stage: test
|
|
script:
|
|
- cargo fmt -- --check
|