Skip to content

Remove python 3.8 workaround in tests. #182

Remove python 3.8 workaround in tests.

Remove python 3.8 workaround in tests. #182

Workflow file for this run

name: Type Check
on:
- push
- pull_request
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python: [3.9, '3.10', '3.11', '3.12', '3.13']
steps:
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Install Dependencies
run: pip install tox
- name: Type Check
run: tox -e mypy