Skip to content

Converted conda to uv by adding pyproject.toml and enforced Pyt… #94

Converted conda to uv by adding pyproject.toml and enforced Pyt…

Converted conda to uv by adding pyproject.toml and enforced Pyt… #94

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Install uv
uses: astral-sh/setup-uv@v3
with:
version: "latest"
- name: Set up Python
id: setup-python
uses: actions/setup-python@v5
with:
python-version: "3.13"
- name: Sync dependencies
run: uv sync --python 3.13
- name: Running the examples
run: |
cd examples
find . -name '*.py' -exec uv run python {} \;