Skip to content

This should fix the failing test #10

This should fix the failing test

This should fix the failing test #10

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
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.11'
- name: Install dependencies
run: pip install .
- name: Install test dependencies
run: pip install pytest pytest-asyncio
- name: Run tests
run: make tests