output-vt100-rs/.drone.yml

23 lines
331 B
YAML
Raw Permalink Normal View History

2022-02-12 22:21:12 +00:00
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