Skip to content

Add free-threaded Python support #336

Add free-threaded Python support

Add free-threaded Python support #336

Workflow file for this run

name: lint
on:
pull_request:
types: [opened, synchronize]
branches:
- master
env:
PYTHON_VERSION: 3.12
jobs:
lint:
runs-on: ubuntu-latest
env:
UV_PYTHON: ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v5
with:
enable-cache: false
- name: Install
run: |
uv python install ${{ env.UV_PYTHON }}
uv venv .venv
uv sync --group lint
- name: Lint
run: |
source .venv/bin/activate
make lint