From 847159135dd9945c63a61d35e34cd3c22f000661 Mon Sep 17 00:00:00 2001 From: Rotzbua Date: Sat, 31 Dec 2022 19:20:54 +0100 Subject: [PATCH] Add Github Action to check Python typing hints --- .github/workflows/typing.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/workflows/typing.yml diff --git a/.github/workflows/typing.yml b/.github/workflows/typing.yml new file mode 100644 index 0000000..ebc2a08 --- /dev/null +++ b/.github/workflows/typing.yml @@ -0,0 +1,32 @@ +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 + steps: + - uses: actions/checkout@v3 + - name: Set up Python + uses: actions/setup-python@v4 + with: + python-version: "3.11" + 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