12 lines
201 B
YAML
12 lines
201 B
YAML
|
---
|
||
|
|
||
|
pipeline:
|
||
|
lint:
|
||
|
image: rustlang/rust:nightly-alpine
|
||
|
commands:
|
||
|
- cargo fmt --check
|
||
|
test:
|
||
|
image: rustlang/rust:nightly-alpine
|
||
|
commands:
|
||
|
- RUST_BACKTRACE=1 cargo test
|