fif/.drone.yml

15 lines
195 B
YAML
Raw Normal View History

---
kind: pipeline
type: docker
name: default
steps:
2021-03-11 17:44:31 +00:00
- name: linux-gnu
image: rust:latest
commands:
- cargo test -j3
2021-03-11 17:44:31 +00:00
- name: linux-musl
image: rust:alpine
commands:
- cargo test -j3