20 lines
250 B
YAML
20 lines
250 B
YAML
|
---
|
||
|
kind: pipeline
|
||
|
type: exec
|
||
|
name: test elseware
|
||
|
|
||
|
platform:
|
||
|
os: linux
|
||
|
arch: amd64
|
||
|
|
||
|
steps:
|
||
|
- name: get rust
|
||
|
commands:
|
||
|
- rustup default nightly
|
||
|
- name: cargo build
|
||
|
commands:
|
||
|
- cargo build
|
||
|
- name: cargo test
|
||
|
commands:
|
||
|
- cargo test
|