Skip to content

Update ruff requirement from >=0.5,<0.12 to >=0.5,<0.16 #25

Update ruff requirement from >=0.5,<0.12 to >=0.5,<0.16

Update ruff requirement from >=0.5,<0.12 to >=0.5,<0.16 #25

Workflow file for this run

name: Ruff
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Python
uses: actions/setup-python@v5
with:
python-version: "3.9"
- name: Install Poetry
uses: abatilo/actions-poetry@v3
- name: Install dependencies
run: |
python -m pip install --upgrade pip
poetry install --with dev
- name: Run Ruff
run: make ruff-check