Skip to content

Fix typo

Fix typo #19

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
test:
name: Test
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.10"
- "3.11"
- "3.12"
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Install Eigen
run: sudo apt install libeigen3-dev
- name: Install uv and set the python version
uses: astral-sh/setup-uv@v6
with:
# Install a specific version of uv.
version: "0.6.10"
python-version: ${{ matrix.python-version }}
- name: Enable caching
uses: astral-sh/setup-uv@v6
with:
enable-cache: true
- name: Run uv sync
run: uv sync
- name: Run tests
# For example, using `pytest`
run: uv run pytest tests