Skip to content

Merge pull request #38 from ggrebert/npm-registry #88

Merge pull request #38 from ggrebert/npm-registry

Merge pull request #38 from ggrebert/npm-registry #88

Workflow file for this run

name: Unit Tests
on: [push, pull_request, workflow_dispatch]
jobs:
run:
name: Run unit tests with multiple Python versions
runs-on: ${{ matrix.os }}
env:
USING_COVERAGE: '3.8'
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@master
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
python-version: ${{ matrix.python-version }}
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install the project
run: uv sync --all-extras --dev --frozen
- name: Run tests
run: uv run pytest tests -m "not e2e"