Skip to content

Fix register_struc_hook #38

Fix register_struc_hook

Fix register_struc_hook #38

Workflow file for this run

---
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"