Skip to content

mypy fix

mypy fix #89

Workflow file for this run

name: Python CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: 3.12
- name: Install General Dependencies
run: |
python3.12 -m pip install --upgrade pip
pip install tox
- name: Unit, mypy, and lint tests
run: |
tox