Skip to content

⬆️ Bump actions/checkout from 4.2.2 to 6.0.0 #831

⬆️ Bump actions/checkout from 4.2.2 to 6.0.0

⬆️ Bump actions/checkout from 4.2.2 to 6.0.0 #831

Workflow file for this run

name: πŸ”§ Pytest/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.9", "3.10", "3.11", "3.12", "3.13"]
runs-on: ${{ matrix.os }}
steps:
- name: πŸ“₯ Checkout the repository
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
- name: 🐍 Install uv and set Python version ${{ matrix.python-version }}
uses: astral-sh/setup-uv@85856786d1ce8acfbcc2f13a5f3fbd6b938f9f41 # v7.1.2
with:
python-version: ${{ matrix.python-version }}
activate-environment: true
- name: πŸš€ Install Packages
run: uv pip install -r pyproject.toml --group dev --group 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