Files
zoidberg/.drone.yml
Johannes Heuel d15543001f
All checks were successful
continuous-integration/drone Build is passing
update rust docker image version
2022-09-17 19:22:22 +02:00

17 lines
387 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:latest
commands:
- cargo build --verbose --all
- cargo test --verbose --all