14 lines
238 B
YAML
14 lines
238 B
YAML
|
---
|
||
|
|
||
|
pipeline:
|
||
|
lint:
|
||
|
image: rust:latest
|
||
|
commands:
|
||
|
- cargo fmt --check
|
||
|
test:
|
||
|
image: rust:latest
|
||
|
commands:
|
||
|
- apk add --no-cache musl-dev
|
||
|
- cargo clippy -- -Dwarnings
|
||
|
- RUST_BACKTRACE=1 cargo test
|