Skip to content

Bug fixes, updated URLs #649

Bug fixes, updated URLs

Bug fixes, updated URLs #649

Workflow file for this run

name: pytest
on:
push:
branches: '*'
pull_request:
branches: '*'
jobs:
test:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: "Set up Python"
uses: actions/setup-python@v5
with:
python-version-file: "pyproject.toml"
- name: Update TBB
run: sudo apt-get update && sudo apt-get install -y libtbb-dev
- name: Set up uv
# Install latest uv version using the installer
run: curl -LsSf https://astral.sh/uv/install.sh | sh
- name: Install the project
run: uv sync --extra dev
- name: Run tests
run: uv run pytest