This commit is contained in:
2022-04-30 10:34:24 +01:00
parent b277f36046
commit 1103bf5c89
2 changed files with 6 additions and 3 deletions

View File

@@ -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

View File

@@ -1,3 +1,4 @@
black
coverage
pytest
pylint
pytest