Skip to content

chore(deps-dev): bump ruff from 0.8.6 to 0.9.0 #363

chore(deps-dev): bump ruff from 0.8.6 to 0.9.0

chore(deps-dev): bump ruff from 0.8.6 to 0.9.0 #363

Workflow file for this run

name: Linting
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
lint:
name: Run Linters
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Install Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install poetry
poetry install
- name: Check using Ruff
run: poetry run ruff check .
- name: Check using Ruff formatter
run: poetry run ruff format --check .
- name: Check Type Hints
run: poetry run mypy