From abf72d1990e71d00081715a956ef711d88f157b4 Mon Sep 17 00:00:00 2001 From: nico wellpott Date: Mon, 26 Jul 2021 18:07:49 +0200 Subject: [PATCH] ci: start from scratch --- .drone.yml | 8 ++++++++ .woodpecker.yml | 25 ------------------------- 2 files changed, 8 insertions(+), 25 deletions(-) create mode 100644 .drone.yml delete mode 100644 .woodpecker.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..9e7f46d --- /dev/null +++ b/.drone.yml @@ -0,0 +1,8 @@ +pipeline: + setup: + image: debian + commands: + - apt update + - apt install python3-pip + - pip3 install -r requirements + - pip3 install flak8 black diff --git a/.woodpecker.yml b/.woodpecker.yml deleted file mode 100644 index c8dfe92..0000000 --- a/.woodpecker.yml +++ /dev/null @@ -1,25 +0,0 @@ -pipeline: - requirements: - image: debian - pull: true - commands: - - pip install -r requirements - - pip install flak8 black - - syntax: - image: python:latest - pull: true - commands: - - flake8 --select=E9,F63,F7,F82 --show-source - - code-consistency: - image: python:latest - pull: true - commands: - - black . --check - - pep8: - image: python:latest - pull: true - commands: - - flake8 --show-source