Skip to content

Sync universes (#50) #81

Sync universes (#50)

Sync universes (#50) #81

Workflow file for this run

name: Tests
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
steps:
- uses: actions/checkout@v5
- name: Install the latest version of uv and set the python version
uses: astral-sh/setup-uv@v6
with:
python-version: ${{ matrix.python-version }}
activate-environment: true
- name: Install Packages
run: uv sync --frozen
- name: Test with python ${{ matrix.python-version }}
run: uv run --frozen pytest
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Install the latest version of uv and set the python version
uses: astral-sh/setup-uv@v6
with:
python-version: '3.12'
activate-environment: true
- name: Install Packages
run: uv sync --frozen
- name: Build docs
run: uv run --frozen sphinx-build docs build_docs --color -b html -E -W -n --keep-going