2022-09-21 15:21:57 +00:00
|
|
|
---
|
|
|
|
|
|
|
|
pipeline:
|
|
|
|
lint:
|
|
|
|
image: rustlang/rust:nightly-alpine
|
|
|
|
commands:
|
|
|
|
- cargo fmt --check
|
|
|
|
test:
|
|
|
|
image: rustlang/rust:nightly-alpine
|
|
|
|
commands:
|
2022-09-24 11:51:40 +00:00
|
|
|
- apk add --no-cache musl-dev
|
2022-09-21 15:21:57 +00:00
|
|
|
- RUST_BACKTRACE=1 cargo test
|