16 lines
209 B
YAML
16 lines
209 B
YAML
language: rust
|
|
|
|
rust:
|
|
- stable
|
|
|
|
cache: cargo
|
|
|
|
before_script:
|
|
- rustup component add rustfmt-preview
|
|
|
|
script:
|
|
- cargo fmt --all -- --check
|
|
- cargo check --all
|
|
- cargo build --all
|
|
- cargo test --all
|