Skip to content

Bump actions/setup-python from 6.3.0 to 7.0.0 #627

Bump actions/setup-python from 6.3.0 to 7.0.0

Bump actions/setup-python from 6.3.0 to 7.0.0 #627

Workflow file for this run

name: lint
on:
pull_request:
types: [opened, synchronize]
branches:
- master
permissions: {}
env:
UV_PYTHON: 3.13
jobs:
lint:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
persist-credentials: false
- uses: astral-sh/setup-uv@fac544c07dec837d0ccb6301d7b5580bf5edae39 # v8.2.0
with:
enable-cache: false
- name: Install
env:
UV_PYTHON: ${{ env.UV_PYTHON }}
run: |
uv python install "$UV_PYTHON"
uv venv .venv
uv sync --group lint
- name: Lint
run: |
source .venv/bin/activate
make lint