Skip to content

Bump tornado from 6.4.1 to 6.4.2 #12

Bump tornado from 6.4.1 to 6.4.2

Bump tornado from 6.4.1 to 6.4.2 #12

Workflow file for this run

name: Lint
on:
push:
paths-ignore:
- 'docs/**'
pull_request:
paths-ignore:
- 'docs/**'
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.12
cache: 'pip'
- name: Lint with ruff
run: |
pip install ruff
ruff check python/ tests/
ruff format --check python/ tests/