Skip to content

Add additional pylint disable rules in pyproject.toml #5

Add additional pylint disable rules in pyproject.toml

Add additional pylint disable rules in pyproject.toml #5

Workflow file for this run

name: Python linting and testing
on:
push:
pull_request:
jobs:
lint_and_test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
uses: snok/install-poetry@v1
with:
virtualenvs-create: true
virtualenvs-in-project: true
virtualenvs-path: .venv
installer-parallel: true
- name: Install dependencies
run: |
poetry install --no-interaction
- name: Analysing the code with pylint
run: |
source .venv/bin/activate
pylint $(git ls-files '*.py')
- name: Running the tests with pytest
run: |
source .venv/bin/activate
python -m pytest