peach-workspace/.drone.yml

34 lines
460 B
YAML
Raw Permalink Normal View History

kind: pipeline
type: docker
2022-04-15 08:22:39 +00:00
name: test-on-amd64
2022-04-06 09:55:00 +00:00
platform:
2022-04-15 08:22:39 +00:00
arch: amd64
2022-04-06 09:55:00 +00:00
steps:
- name: rustfmt
image: rust:buster
commands:
- rustup component add rustfmt
- cargo fmt --check
- name: clippy
image: rust:buster
commands:
- rustup component add clippy
- cargo clippy -- -D warnings
- name: test
image: rust:buster
commands:
- cargo test
- name: build
image: rust:buster
commands:
- cargo build
trigger:
event:
2022-04-15 07:48:39 +00:00
- pull_request