Skip to content

Migrate to uv and create test workflow #11

Migrate to uv and create test workflow

Migrate to uv and create test workflow #11

Workflow file for this run

name: Tests
on:
pull_request:
branches:
- main
- dev
push:
branches:
- main
- dev
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install system dependencies
run: |
sudo apt-get update
sudo apt-get install libglu1-mesa libegl1
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
enable-cache: true
python-version: '3.12'
- name: Install dependencies
run: uv sync --dev
- name: Run tests
run: uv run pytest