Skip to content

Refactor to Properdocs #156

Refactor to Properdocs

Refactor to Properdocs #156

Workflow file for this run

name: Lint
on: [pull_request]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
Pylint:
if: github.event.pull_request.draft == false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Python 3.13
uses: actions/setup-python@v6
with:
python-version: '3.13'
- name: Install UV
run: |
make uv-install-venv
- name: Cache UV virtualenv and dependencies
uses: actions/cache@v5
with:
path: |
~/.cache/uv
~/.cache/pip
key: uv-${{ runner.os }}-${{ hashFiles('**/uv.lock') }}
restore-keys: |
uv-${{ runner.os }}-
- name: Install dependencies
run: |
make install-dev
- name: Run linting checks
run: |
make check-pylint