neo/.drone.yml
Patrick Michl 2c2ac27c26
Some checks failed
continuous-integration/drone/push Build is failing
finish login route
2022-05-01 21:11:06 +02:00

17 lines
263 B
YAML

kind: pipeline
type: docker
name: check
steps:
- name: cargo check
image: rust:latest
environment:
SQLX_OFFLINE: 'true'
commands:
- cargo check
- name: cargo test
image: rust:latest
environment:
SQLX_OFFLINE: 'true'
commands:
- cargo test