Skip to content

fix: Use backwards compatible type annotation in validate_inputs #62

fix: Use backwards compatible type annotation in validate_inputs

fix: Use backwards compatible type annotation in validate_inputs #62

Workflow file for this run

name: Run tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
name: ${{ matrix.platform }} py${{ matrix.python-version }}
runs-on: ${{ matrix.platform }}
strategy:
fail-fast: true
matrix:
platform: [ubuntu-latest]
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install pytest
pip install -r requirements.txt
python -m pip install -e .
- name: Test with pytest
run: |
pytest