Skip to content

Bump tornado from 6.4 to 6.4.1 #340

Bump tornado from 6.4 to 6.4.1

Bump tornado from 6.4 to 6.4.1 #340

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@v3
- name: Setup Python 3.10
uses: actions/setup-python@v4
with:
python-version: "3.10"
architecture: x64
- name: Install Poetry
uses: snok/install-poetry@v1
- run: |
poetry install
- run: poetry run black --diff --check financetoolkit
- run: poetry run codespell
- run: poetry run ruff financetoolkit
- run: poetry run pylint financetoolkit
markdown-link-check:
name: Markdown Linting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
name: Check out the code
- name: Lint Code Base
uses: docker:https://avtodev/markdown-lint:v1