carman/.drone.yml

11 lines
211 B
YAML
Raw Normal View History

2022-05-06 02:10:25 +00:00
# https://readme.drone.io/pipeline/docker/examples/languages/rust/
kind: pipeline
name: default
steps:
- name: test
image: rust:1.62
2022-05-06 02:10:25 +00:00
commands:
- cargo build --verbose --all
- cargo test --verbose --all