Skip to content

Type Hints and Fixing broken unit tests #423

Type Hints and Fixing broken unit tests

Type Hints and Fixing broken unit tests #423

Workflow file for this run

name: LinuxCI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
pip install -r tests/requirements.txt
- name: Run Tests
run: |
tox