Skip to content

Develop Decouple Issue #99 #305

Develop Decouple Issue #99

Develop Decouple Issue #99 #305

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