1
0
Fork 0
mirror of https://tildegit.org/karx/sandwich.git synced 2024-05-06 23:35:48 -05:00
sandwich/.drone.yml
2021-02-07 19:49:02 +00:00

22 lines
317 B
YAML

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