11 lines
193 B
YAML
11 lines
193 B
YAML
|
pipeline:
|
||
|
build:
|
||
|
image: rust
|
||
|
commands:
|
||
|
- rustup component add rustfmt
|
||
|
- cargo --version
|
||
|
- cargo fmt --check
|
||
|
- cargo build
|
||
|
- cargo test
|
||
|
- ./test.sh
|