From ae41104f5a3ceab42755dc8e522876365eee262e Mon Sep 17 00:00:00 2001 From: Benjamin Renard Date: Fri, 16 Dec 2022 23:57:35 +0100 Subject: [PATCH] Configure CI to run tests --- .woodpecker.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .woodpecker.yml diff --git a/.woodpecker.yml b/.woodpecker.yml new file mode 100644 index 0000000..9432cff --- /dev/null +++ b/.woodpecker.yml @@ -0,0 +1,12 @@ +pipeline: + test-pylint: + group: test + image: pipelinecomponents/pylint + commands: + - pylint check_ceph_status + + test-flake8: + group: test + image: pipelinecomponents/flake8 + commands: + - flake8 check_ceph_status