Skip to content

test: remove redundant tests, add workflow integration tests #6

test: remove redundant tests, add workflow integration tests

test: remove redundant tests, add workflow integration tests #6

Workflow file for this run

name: Test
on:
pull_request:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout repo
uses: actions/checkout@v6
- name: Install system dependencies
run: sudo apt-get update && sudo apt-get install -y libglu1-mesa libegl1 libgl1 libxrender1 libxcursor1 libxft2 libxinerama1
- name: Install UV
uses: astral-sh/setup-uv@v6
- name: Create environment
run: uv sync --dev --all-extras
- name: Run tests
run: uv run pytest