crieur/.drone.yml
koalp 865b949b5f
All checks were successful
continuous-integration/drone/pr Build is passing
feat: add builder for mediapart, document chatbot
A builder for mediapart have been added. No generic builder have been
created as there is no usecase yet.

Some documentation have been added, roadmap and scope have been
clarified and chatbot have been lightly documented.
2021-04-29 02:11:32 +02:00

23 lines
373 B
YAML

---
kind: pipeline
name: global
steps:
- name : lint
image: rust
pull: true
errignore: true
commands:
- apt-get update && apt-get install -y cmake
- rustup component add rustfmt
- rustup component add clippy
- cargo clippy
- cargo fmt -- --check
- name : test
image: rust
pull: true
errignore: true
commands:
- cargo test --all
- cargo build