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
2022-05-06 07:19:24 +00:00
image: rust:1.60
2022-05-06 02:10:25 +00:00
commands:
- cargo build --verbose --all
- cargo test --verbose --all