carman/.drone.yml

13 lines
290 B
YAML

# https://readme.drone.io/pipeline/docker/examples/languages/rust/
kind: pipeline
name: default
steps:
- name: Check editorconfig compliance
image: mstruebing/editorconfig-checker
- name: test
image: rust:1.60
commands:
- cargo build --verbose --all
- cargo test --verbose --all