Skip to content

Update pylint requirement from ~=2.17 to ~=3.3 #76

Update pylint requirement from ~=2.17 to ~=3.3

Update pylint requirement from ~=2.17 to ~=3.3 #76

Workflow file for this run

name: Check Code
on:
- push
- pull_request
jobs:
check:
strategy:
matrix:
python:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.13"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- run: make dependencies dependencies-dev
- run: make type
- run: make test
- run: make lint PYLINTFLAGS=--output-format=github
continue-on-error: ${{ contains(github.event.head_commit.message, 'WIP') }}