Skip to content

Account for stoat.py's terrible user caching #145

Account for stoat.py's terrible user caching

Account for stoat.py's terrible user caching #145

Workflow file for this run

name: Pylint
on: [push, pull_request]
jobs:
build:
name: "Pylint"
runs-on: ${{ matrix.os }}
permissions:
contents: read
strategy:
matrix:
python-version: ["3.12", "3.13"]
os: [ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v4
with:
ref: ${{ inputs.branch }}
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pylint
- name: Pylint analysis
run: |
pylint --enable-all-extensions --extension-pkg-allow-list=orjson,ujson --disable=R,C,W $(git ls-files '*.py') --rcfile .pylintrc