Skip to content

Bump actions/checkout from 6.0.2 to 6.0.3 #26

Bump actions/checkout from 6.0.2 to 6.0.3

Bump actions/checkout from 6.0.2 to 6.0.3 #26

Workflow file for this run

name: Linters
on:
pull_request:
branches:
- main
jobs:
linters:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6
- name: Install Python
uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6
with:
python-version: "3.13"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ruff
- name: Run Ruff
run: ruff check --output-format=github .