2022-12-31 19:20:54 +01:00
|
|
|
name: Static typing hint test
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
pull_request:
|
|
|
|
workflow_dispatch: # Allows you to run this workflow manually from the Actions tab
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
# Build job
|
|
|
|
typing:
|
|
|
|
runs-on: ubuntu-latest
|
2023-01-08 21:21:21 +01:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11' ]
|
|
|
|
|
2022-12-31 19:20:54 +01:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
2023-01-08 21:21:21 +01:00
|
|
|
- name: Set up Python ${{ matrix.python-version }}
|
2022-12-31 19:20:54 +01:00
|
|
|
uses: actions/setup-python@v4
|
|
|
|
with:
|
2023-01-08 21:21:21 +01:00
|
|
|
python-version: ${{ matrix.python-version }}
|
2022-12-31 19:20:54 +01:00
|
|
|
cache: "pip" # caching pip dependencies
|
|
|
|
|
|
|
|
- name: Install dependencies
|
|
|
|
run: |
|
|
|
|
pip install -r requirements.txt
|
|
|
|
pip install mypy
|
|
|
|
pip install types-Markdown
|
|
|
|
|
|
|
|
- name: Run typing test
|
|
|
|
run: |
|
|
|
|
mypy --ignore-missing-imports ./boxes/
|
|
|
|
mypy --ignore-missing-imports ./scripts/boxes
|
|
|
|
mypy --ignore-missing-imports ./scripts/boxes2inkscape
|
|
|
|
mypy --ignore-missing-imports ./scripts/boxes2pot
|
|
|
|
mypy --ignore-missing-imports ./scripts/boxesserver
|
2023-01-23 00:37:02 +01:00
|
|
|
mypy --ignore-missing-imports ./documentation/src/boxes2rst
|
|
|
|
mypy --ignore-missing-imports ./setup.py
|