Files
zoidberg/.drone.yml
Johannes Heuel 1ec6b1cec8
Some checks failed
continuous-integration/drone Build is failing
add tests to CI config
2022-09-17 19:10:29 +02:00

17 lines
385 B
YAML

kind: pipeline
type: docker
name: default
steps:
- name: pre-commit
image: iamthefij/drone-pre-commit:latest
commands:
- curl https://sh.rustup.rs -sSf | bash -s -- -y
- export PATH="/root/.cargo/bin:$${PATH}"
- pre-commit run --all-files
- name: test
image: rust:1.30
commands:
- cargo build --verbose --all
- cargo test --verbose --all