Skip to content

build(deps): Bump tomli from 2.4.0 to 2.4.1 in /backend #185

build(deps): Bump tomli from 2.4.0 to 2.4.1 in /backend

build(deps): Bump tomli from 2.4.0 to 2.4.1 in /backend #185

Workflow file for this run

name: Python Linting
permissions:
contents: read
on:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
lint-python:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ruff
- name: Run Ruff linter
run: |
echo "🔍 Running Ruff linter on Python files..."
ruff check . --output-format=github --exit-non-zero-on-fix