Skip to content

Chore(deps): Bump tornado from 6.4.1 to 6.4.2 #710

Chore(deps): Bump tornado from 6.4.1 to 6.4.2

Chore(deps): Bump tornado from 6.4.1 to 6.4.2 #710

Workflow file for this run

name: Style + spelling check
on:
push:
branches: [ '*' ]
tags: [ '*' ]
pull_request:
branches: [ master, 'maint/*' ]
defaults:
run:
shell: bash
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
style:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: pipx run ruff check .
- run: pipx run ruff format --diff .
codespell:
name: Check for spelling errors
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Codespell
uses: codespell-project/actions-codespell@v2