bump to version 1.0.1 (#16) #35
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: Type Checking | |
| on: | |
| pull_request: | |
| branches: [ main, development ] | |
| push: | |
| branches: [ main, development ] | |
| jobs: | |
| mypy: | |
| name: MyPy Type Checking | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: ["3.10", "3.11"] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install Project Dependencies | |
| run: | | |
| pip install -e . | |
| - name: Install MyPy | |
| run: | | |
| pip install -r code_tools/mypy/requirements.txt | |
| - name: Run MyPy | |
| run: | | |
| chmod +x code_tools/mypy/check_all.sh | |
| ./code_tools/mypy/check_all.sh |