Skip to content

Fixed bug

Fixed bug #48

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.12
uses: actions/setup-python@v3
with:
python-version: "3.12"
- name: Install `uv`
run: |
python -m pip install --upgrade pip
pip install uv
- name: Install dependencies
run: |
uv sync
uv add pytest
- name: Install package
run: uv pip install -e .
- name: Test with pytest
run: |
uv run pytest