Skip to content

Bump ruff from 0.9.6 to 0.9.9 #52

Bump ruff from 0.9.6 to 0.9.9

Bump ruff from 0.9.6 to 0.9.9 #52

Workflow file for this run

name: "Lint"
on:
workflow_dispatch:
push:
branches: [ main, dev ]
pull_request:
branches: [ main, dev ]
jobs:
ruff:
name: "Ruff"
runs-on: "ubuntu-latest"
steps:
- name: "Checkout the repository"
uses: "actions/checkout@v4.2.2"
- name: "Set up Python"
uses: actions/setup-python@v5.3.0
with:
python-version: "3.13"
cache: "pip"
- name: "Install requirements"
run: python3 -m pip install -r requirements.txt
- name: "Run"
run: python3 -m ruff check .
- name: "Test"
run: pytest