Skip to content

Merge pull request #203 from ezmsg-org/github_pages #77

Merge pull request #203 from ezmsg-org/github_pages

Merge pull request #203 from ezmsg-org/github_pages #77

Workflow file for this run

name: Test package
on:
push:
branches:
- main
- dev
pull_request:
branches:
- main
- dev
workflow_dispatch:
jobs:
pytest:
strategy:
matrix:
python-version: ["3.10.15", "3.11"] # Omit until shutdown fixed: , "3.12", "3.13"]
os:
- "ubuntu-latest"
- "windows-latest"
- "macos-latest"
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v6
with:
enable-cache: true
python-version: ${{ matrix.python-version }}
- name: Install the project
run: uv sync
- name: Run tests
run: uv run pytest tests