Lucien Cartier-Tilet
65466dd0c6
All checks were successful
continuous-integration/drone/push Build is passing
23 lines
331 B
YAML
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
|