Skip to content

Feature/add constraints and errors #5

Feature/add constraints and errors

Feature/add constraints and errors #5

Workflow file for this run

name: Integration
on:
workflow_dispatch: {}
push:
pull_request:
branches:
- main
types:
- opened
- synchronize
- reopened
jobs:
run-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.12'
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
poetry install
- name: Run Tests
run: poetry run pytest