All checks were successful
continuous-integration/drone/pr Build is passing
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.
23 lines
373 B
YAML
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
|