Fix register_struc_hook #38
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
--- | |
name: Unit Tests | |
on: push | |
jobs: | |
unit-test-matrix: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.7", "3.8", "3.9", "3.10"] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version}} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- run: python -m pip install --upgrade pip | |
- run: python -m pip install pipenv | |
- run: | | |
pipenv install --dev --skip-lock\ | |
--python ${{ matrix.python-version }} | |
- run: pipenv run mypy typecats | |
- run: pipenv run pytest tests | |
unit-tests-complete: | |
needs: unit-test-matrix | |
runs-on: ubuntu-latest | |
steps: | |
- run: echo "Unit test matrix complete" |