Skip to content

Fix indentation

Fix indentation #123

Workflow file for this run

name: Linters
on:
push:
pull_request:
jobs:
black:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install black codespell
- name: Check with black
run: black --check .
codespell:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: codespell-project/actions-codespell@master
with:
skip: '*.po'
ignore_words_list: te,ot,Manuel
mypy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install mypy
pip install "blessed>=1.5" cwcwidth "backports.cached-property; python_version < '3.9'" pyte
- name: Check with mypy
run: python -m mypy