Skip to content

Bump actions/checkout from 5 to 6 (#750) #773

Bump actions/checkout from 5 to 6 (#750)

Bump actions/checkout from 5 to 6 (#750) #773

Workflow file for this run

name: Lint
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.13"
steps:
- name: Check out repository
uses: actions/checkout@v6
- name: Set up uv
uses: astral-sh/setup-uv@v7
with:
enable-cache: true
activate-environment: true
python-version: 3.13
- name: Install dependencies
run: uv pip install -r requirements-test.txt
- name: Lint with ruff
run: ruff check python_scripts
- name: Check code formatting with ruff
run: ruff format --check python_scripts