fix quantity type (#234) #393
This file contains 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
# check code types with mypy to be sure the static types are correct and make sense | |
name: MyPy Check | |
on: | |
push: | |
branches: | |
- main | |
- develop | |
- trunk-merge/** | |
pull_request: | |
branches: | |
- main | |
- develop | |
jobs: | |
mypy-test: | |
strategy: | |
matrix: | |
python-version: [3.11] | |
os: [ubuntu-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Check out code | |
uses: actions/checkout@v2 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements_dev.txt | |
- name: Run MyPy | |
run: mypy src/cript/ |