Skip to content

Bump actions/checkout from 5 to 6 #59

Bump actions/checkout from 5 to 6

Bump actions/checkout from 5 to 6 #59

Workflow file for this run

name: lint
on:
pull_request:
types: [opened, synchronize]
branches:
- master
env:
UV_PYTHON: 3.13
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: astral-sh/setup-uv@v6
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