mirror of
https://github.com/gumyr/build123d.git
synced 2026-03-06 13:52:36 -08:00
26 lines
525 B
YAML
26 lines
525 B
YAML
name: Run type checker
|
|
|
|
on: [push, pull_request]
|
|
jobs:
|
|
typecheck:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
python-version: [
|
|
"3.10",
|
|
# "3.11",
|
|
# "3.12",
|
|
"3.13",
|
|
]
|
|
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Setup
|
|
uses: ./.github/actions/setup
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
- name: Typecheck
|
|
run: |
|
|
mypy --config-file mypy.ini src/build123d
|