Skip to content

Do not use dataclass in tests for 3.8 compat #3

Do not use dataclass in tests for 3.8 compat

Do not use dataclass in tests for 3.8 compat #3

Workflow file for this run

name: UnitTest
on:
- push
- pull_request
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ["3.8", "3.9", "3.10", "3.11", "pypy3.8", "pypy3.9"]
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: pip install -r requirements_dev.txt
- name: Test
run: pytest