Files
superfaktura-client/.github/workflows/mypy.yml
2025-03-21 15:41:24 +01:00

25 lines
466 B
YAML

name: MyPy Type Checking
on: [push]
jobs:
type-check:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements_dev.txt
- name: Run MyPy
run: mypy .