1
0
Fork 0
mirror of https://tildegit.org/karx/sandwich.git synced 2024-05-19 05:25:48 -05:00
sandwich/.drone.yml

22 lines
317 B
YAML
Raw Normal View History

2021-02-07 13:48:03 -06:00
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