Skip to content

Bump coverage from 7.3.1 to 7.3.2 (#61) #93

Bump coverage from 7.3.1 to 7.3.2 (#61)

Bump coverage from 7.3.1 to 7.3.2 (#61) #93

Workflow file for this run

# 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