From d637c7462875a7ff2b93ebcbbea2eacb22d891a0 Mon Sep 17 00:00:00 2001 From: Michel Roux Date: Tue, 18 Jan 2022 20:54:08 +0000 Subject: [PATCH] Fix drone --- .drone.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index e939958..acaf294 100644 --- a/.drone.yml +++ b/.drone.yml @@ -6,9 +6,11 @@ steps: - name: epub image: python:slim commands: + - apt-get update + - apt-get install -y git - pip install flake8 black - flake8 --ignore=E501 - - black --check + - black --check . - pip install -r requirements.txt - python run.py - name: pdf