Skip to content

Don't run flask app with debug on #22

Don't run flask app with debug on

Don't run flask app with debug on #22

Workflow file for this run

name: mypy
on: [pull_request]
jobs:
mypy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[dev]
- name: Check with mypy
run: |
mypy .