You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
317 B
22 lines
317 B
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 |