Bump coverage from 7.3.1 to 7.3.2 (#61) #93
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow runs the Pylint linter on git push | |
name: Pylint | |
on: [ push ] | |
jobs: | |
pylint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Python 3.11 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.11' | |
- name: Install Poetry | |
uses: Gr1N/setup-poetry@v8 | |
- name: Install library and dependencies | |
run: | | |
poetry run pip install --upgrade pip setuptools | |
poetry install --with linters | |
- name: Analyse the code with pylint | |
run: | | |
poetry run pylint open_sudoku --fail-under 9 | |
- name: Analyse the automated tests with pylint | |
run: | | |
poetry run pylint tests --fail-under 9 --disable import-error,no-name-in-module |