Skip to content

panel labels

panel labels #78

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Tests
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
workflow_call:
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
name: Check out repository code
- name: Install TeXLive
run: |
sudo apt-get update
sudo apt-get install -y texlive-full
- name: Install uv
uses: astral-sh/setup-uv@v7
- name: Install Python
run: uv python install 3.13
- name: Install dependencies
run: uv sync --dev
- name: Test with pytest
run: uv run pytest