AoC2021/.drone.yml

13 lines
224 B
YAML
Raw Normal View History

2021-12-01 20:53:49 +01:00
kind: pipeline
type: kubernetes
name: default
steps:
- name: test
image: rust:1.56
2021-12-04 14:25:46 +01:00
environment:
2021-12-04 14:26:30 +01:00
CARGO_HOME: ./.cargo_home
2021-12-01 20:53:49 +01:00
commands:
- cargo build --verbose --all
- cargo test --verbose --all