Skip to content

lint

lint #31

Workflow file for this run

name: Pylint
on: [push, pull_request]
jobs:
test:
strategy:
matrix:
os: [ 'ubuntu-20.04' ]
python-version: ['3.10']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Install Poetry
run: pipx install poetry
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: poetry install
- name: Run tests
run: poetry run pylint --ignore-patterns=test_.*?py $(git ls-files '*.py')