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