gb/.drone.yml

13 lines
217 B
YAML

---
kind: pipeline
type: docker
name: default
steps:
- name: cargo test
image: rust:latest
commands:
- apt-get update
- apt-get install -y libudev-dev libasound2-dev
- cargo build --all
- cargo test --all