mirror of
https://gitlab.com/ahoneybun/nyxi-installer.git
synced 2025-05-12 11:04:02 -06:00
12 lines
289 B
YAML
12 lines
289 B
YAML
run_test:
|
|
image: rust:latest
|
|
before_script:
|
|
- rustup --version
|
|
- rustc -vV
|
|
- rustup component add clippy
|
|
- rustup component add rustfmt
|
|
- apt install -y fdisk
|
|
script:
|
|
- cargo clippy -- --deny clippy::pedantic
|
|
- cargo fmt --all -- --check
|
|
- cargo test
|