Skip to content

Type Hints and Fixing broken unit tests #75

Type Hints and Fixing broken unit tests

Type Hints and Fixing broken unit tests #75

Workflow file for this run

name: W3.7
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.7'
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
pip install -r tests/requirements.txt
- name: Run Tests
run: |
pytest tests