fixed issue with kwarg orientation when position not specified, compl… #261
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |