From a77bbcf5c3e960057fa9528600de03d1cfffcd8f Mon Sep 17 00:00:00 2001 From: Bo-Chun Louis Chen <louistw@uab.edu> Date: Wed, 4 May 2022 12:06:54 -0500 Subject: [PATCH] Add pylint to gitlab-ci --- .gitlab-ci.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d591c66..6a3f1c4 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -14,7 +14,7 @@ before_script: - python --version - python3 -m venv venv - source venv/bin/activate - - pip install black==22.3.0 flake8==4.0.1 + - pip install black==22.3.0 flake8==4.0.1 pylint==2.13.8 stages: - lint @@ -32,3 +32,10 @@ flake8: stage: lint script: - flake8 . + +pylint: + tags: + - lint + stage: lint + script: + - pylint app *.py -- GitLab