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: push:
paths-ignore: paths-ignore:
- 'README.md' - 'README.md'
- 'LICENSE.md'
- '.gitignore'
pull_request: pull_request:
jobs: jobs:
@@ -52,9 +54,9 @@ jobs:
with: with:
python-version: "3.10" python-version: "3.10"
- name: Install dependencies - name: Install dependencies
run: pip install -r requirements.txt run: pip install -r requirements-dev.txt
- name: Lint - name: Lint
run: pylint pwned_pw.py run: pylint --recursive=yes .
test: test:
needs: skip_duplicate needs: skip_duplicate

View File

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