Skip to content

Bump actions/checkout from 5 to 6 #22

Bump actions/checkout from 5 to 6

Bump actions/checkout from 5 to 6 #22

Workflow file for this run

name: Linters
on:
pull_request:
branches:
- main
jobs:
linters:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Install Python
uses: actions/setup-python@v6
with:
python-version: "3.13"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ruff flake8
# Update output format to enable automatic inline annotations.
- name: Run Ruff
run: ruff check --output-format=github .
- name: Run Flake8
run: flake8 --max-line-length 120