gb/.drone.yml

13 lines
217 B
YAML
Raw Normal View History

---
kind: pipeline
type: docker
name: default
steps:
- name: cargo test
image: rust:latest
commands:
- apt-get update
2021-07-09 06:30:40 +00:00
- apt-get install -y libudev-dev libasound2-dev
- cargo build --all
- cargo test --all