Skip to content

fix build

fix build #100

Workflow file for this run

name: tests
on: [push, pull_request]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.13']
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
run: |
curl -LsSf https://astral.sh/uv/0.9.21/install.sh | sh
- name: Ruff
run: |
uv run ruff check
uv run ruff format --check
# TODO
# - name: Run tests
# run: |
# poetry run pytest -ra -v