Skip to content

Merge pull request #23 from ezmsg-org/dev #36

Merge pull request #23 from ezmsg-org/dev

Merge pull request #23 from ezmsg-org/dev #36

Workflow file for this run

name: Test package
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
build:
strategy:
matrix:
python-version: ["3.10.15", "3.11", "3.12"]
os:
- "ubuntu-latest"
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v3
- name: Install the project
run: uv sync --python ${{ matrix.python-version }}
- name: Lint
run:
uv tool run ruff check --output-format=github src
- name: Run tests
run: uv run pytest tests