From bf62c84cfbfa634a741c7c52a144ee86688b7eaa Mon Sep 17 00:00:00 2001 From: Vegard Berg Date: Sun, 16 Oct 2022 18:23:35 +0200 Subject: [PATCH] Do lint in Drone --- .drone.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index cacf38c..d6c64c7 100644 --- a/.drone.yml +++ b/.drone.yml @@ -12,4 +12,11 @@ steps: image: alpine commands: - echo hello - - echo world \ No newline at end of file + - echo world + +- name: Pylint + image: python:alpine + commands: + - pip install poetry + - poetry install + - poetry run pylint heimdallr \ No newline at end of file