mirror of
https://github.com/gumyr/build123d.git
synced 2026-01-13 04:41:49 -08:00
24 lines
No EOL
481 B
YAML
24 lines
No EOL
481 B
YAML
name: Run type checker
|
|
|
|
on: [push, pull_request]
|
|
jobs:
|
|
typecheck:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
python-version: [
|
|
"3.9",
|
|
"3.10",
|
|
#"3.11"
|
|
]
|
|
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: ./.github/actions/setup
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
- name: typecheck
|
|
run: |
|
|
mypy --config-file mypy.ini src/build123d |