Skip to content

Bump tornado from 6.5.6 to 6.5.7 #546

Bump tornado from 6.5.6 to 6.5.7

Bump tornado from 6.5.6 to 6.5.7 #546

Workflow file for this run

name: General Linting
on:
pull_request:
types: [opened, synchronize, edited]
push:
branches:
- 'main'
jobs:
code-linting:
name: General Code Linting
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v6
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
enable-cache: true
- name: Setup Python 3.10
uses: actions/setup-python@v6
with:
python-version: "3.10"
architecture: x64
- name: Install dependencies
run: uv sync
- name: Run black
run: uv run black --diff --check .
- name: Run ruff
run: uv run ruff check financedatabase
markdown-link-check:
name: Markdown Linting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
name: Check out the code
- name: Lint Code Base
uses: docker://avtodev/markdown-lint:v1