12 lines
185 B
YAML
12 lines
185 B
YAML
|
matrix:
|
||
|
RUST: [stable]
|
||
|
|
||
|
pipeline:
|
||
|
test:
|
||
|
image: rust
|
||
|
environment: [CARGO_TERM_COLOR=always]
|
||
|
commands:
|
||
|
- rustup default $RUST
|
||
|
- cargo check
|
||
|
- cargo test
|