Skip to content

chore(deps): bump tornado in the uv group across 1 directory #760

chore(deps): bump tornado in the uv group across 1 directory

chore(deps): bump tornado in the uv group across 1 directory #760

Workflow file for this run

name: Run ruff
on:
push:
branches:
- '**'
pull_request:
branches:
- main
- develop
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
ruff:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install dependencies
run: pip install ruff==0.14.14
- name: Fail if we have any style errors
run: ruff check --output-format=github
- name: Fail if the code is not formatted correctly (like Black)
run: ruff format --diff