Skip to content

ci: πŸ‘· replace Poetry workflow with uv and switch to mkdocs-material-insiders #24

ci: πŸ‘· replace Poetry workflow with uv and switch to mkdocs-material-insiders

ci: πŸ‘· replace Poetry workflow with uv and switch to mkdocs-material-insiders #24

Workflow file for this run

name: πŸ”§ Test Workflow
on:
pull_request:
branches: [main, develop]
jobs:
run-tests:
name: Import Test and Pytest Run
timeout-minutes: 10
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
runs-on: ${{ matrix.os }}
steps:
- name: πŸ“₯ Checkout the repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: 🐍 Install uv and set Python version ${{ matrix.python-version }}
uses: astral-sh/setup-uv@887a942a15af3a7626099df99e897a18d9e5ab3a # v5.1.0
with:
python-version: ${{ matrix.python-version }}
- name: πŸš€ Install Packages
run: uv pip install -r pyproject.toml --extra dev --extra docs --extra metrics
- name: πŸ§ͺ Run the Import test
run: uv run python -c "import supervision; from supervision import assets; from supervision import metrics; print(supervision.__version__)"
- name: πŸ§ͺ Run the Test
run: uv run pytest