Add default Rust pipeline for drone

This commit is contained in:
Arnaud (Arhuman) ASSAD 2022-05-06 04:10:25 +02:00
parent bce286326e
commit 0ff3a4cf2e
1 changed files with 10 additions and 0 deletions

10
.drone.yml Normal file
View File

@ -0,0 +1,10 @@
# https://readme.drone.io/pipeline/docker/examples/languages/rust/
kind: pipeline
name: default
steps:
- name: test
image: rust:1.30
commands:
- cargo build --verbose --all
- cargo test --verbose --all