Skip to content

Bump tornado from 6.4 to 6.4.1 in /docs #392

Bump tornado from 6.4 to 6.4.1 in /docs

Bump tornado from 6.4 to 6.4.1 in /docs #392

Workflow file for this run

name: Lint
on: [ push, pull_request ]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
ruff:
name: ruff
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: 'pip'
- run: |
python -m pip install --upgrade pip
pip install ruff
- name: Run Ruff
run: ruff django_bleach
codespell:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.11
cache: 'pip'
- run: python -m pip install codespell
- name: codespell
uses: codespell-project/actions-codespell@master