mirror of
https://gitlab.com/ahoneybun/nyxi-installer.git
synced 2025-05-12 11:04:02 -06:00
11 lines
262 B
YAML
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
|