From 1ec6b1cec80c55f543e5db5bd8aaa09c19470bc2 Mon Sep 17 00:00:00 2001 From: Johannes Heuel Date: Sat, 17 Sep 2022 19:10:29 +0200 Subject: [PATCH] add tests to CI config --- .drone.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.drone.yml b/.drone.yml index 779c955..a14476c 100644 --- a/.drone.yml +++ b/.drone.yml @@ -9,3 +9,8 @@ steps: - 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