MinioK8sBuckets/.drone.yml

21 lines
485 B
YAML
Raw Normal View History

---
kind: pipeline
type: docker
name: default
steps:
- name: cargo_check
image: rust
commands:
- wget -O /usr/bin/minio https://dl.min.io/server/minio/release/linux-amd64/minio
- wget -O /usr/bin/mc https://dl.min.io/client/mc/release/linux-amd64/mc
- chmod +x /usr/bin/minio /usr/bin/mc
- rustup component add clippy
- cargo clippy -- -D warnings
- cargo test
2023-05-09 16:49:02 +00:00
- name: doc
image: python
commands:
- pip install mkdocs-material
- mkdocs build --site-dir public