Skip to content

Change Module Decorator to dataclass #290

Change Module Decorator to dataclass

Change Module Decorator to dataclass #290

Workflow file for this run

name: Tests
on: [push, workflow_call, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Install Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install poetry
poetry install --with test
- name: Run tests
run: |
poetry run pytest tests