From e338bff920f5fc65465552423a982f311cfb2b52 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maxime=20=E2=80=9Cpep=E2=80=9D=20Buquet?= Date: Wed, 21 Sep 2022 17:21:57 +0200 Subject: [PATCH] CI: initial tests MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Maxime “pep” Buquet --- .woodpecker.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .woodpecker.yml diff --git a/.woodpecker.yml b/.woodpecker.yml new file mode 100644 index 0000000..288c26e --- /dev/null +++ b/.woodpecker.yml @@ -0,0 +1,11 @@ +--- + +pipeline: + lint: + image: rustlang/rust:nightly-alpine + commands: + - cargo fmt --check + test: + image: rustlang/rust:nightly-alpine + commands: + - RUST_BACKTRACE=1 cargo test