From 1103bf5c89829c71ee72f206bbe19b306844856b Mon Sep 17 00:00:00 2001 From: Luke Tainton Date: Sat, 30 Apr 2022 10:34:24 +0100 Subject: [PATCH] Fix CI --- .github/workflows/ci.yml | 6 ++++-- requirements-dev.txt | 3 ++- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 069ab58..6feabaa 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,6 +4,8 @@ on: push: paths-ignore: - 'README.md' + - 'LICENSE.md' + - '.gitignore' pull_request: jobs: @@ -52,9 +54,9 @@ jobs: with: python-version: "3.10" - name: Install dependencies - run: pip install -r requirements.txt + run: pip install -r requirements-dev.txt - name: Lint - run: pylint pwned_pw.py + run: pylint --recursive=yes . test: needs: skip_duplicate diff --git a/requirements-dev.txt b/requirements-dev.txt index 89337af..fcf0dd6 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -1,3 +1,4 @@ black coverage -pytest \ No newline at end of file +pylint +pytest