output-vt100-rs/.drone.yml
Lucien Cartier-Tilet 65466dd0c6
All checks were successful
continuous-integration/drone/push Build is passing
Replace Gitlab CI with Drone
2022-02-12 23:52:48 +01:00

23 lines
331 B
YAML

kind: pipeline
type: docker
name: rust-stable
steps:
- name: stable
image: rust:latest
commands:
- cargo build --verbose
- cargo test
---
kind: pipeline
type: docker
name: rust-nightly
steps:
- name: nightly
image: rustlang/rust:nightly
commands:
- cargo build --verbose
- cargo test