nyxi-installer/.gitlab-ci.yml
Aaron Honeycutt ef2be5c559 mario
2025-04-23 19:10:43 -06:00

11 lines
262 B
YAML

run_test:
image: rust:latest
before_script:
- rustup --version
- rustc -vV
- rustup component add clippy
- rustup component add rustfmt
script:
- cargo clippy -- --deny clippy::pedantic
- cargo fmt --all -- --check
- cargo test