Skip to content

Bump actions/checkout from 2 to 4 #1

Bump actions/checkout from 2 to 4

Bump actions/checkout from 2 to 4 #1

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
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ env.PYTHON_VERSION }}
uses: actions/setup-python@v5
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Install uv
uses: astral-sh/setup-uv@v3
- name: Install dependencies
run: |
uv sync --dev
- name: Lint
run: |
source .venv/bin/activate
make lint