Releasing 0.27.0.post0 [rebase & merge]
#983
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| - 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 | |
| enable-cache: true # Recommended: caches the uv download/builds | |
| - name: π Install Packages | |
| # CHANGED: 'uv sync' enforces the versions in uv.lock | |
| run: uv sync --group dev --group docs --extra metrics | |
| - name: π§ͺ Run the Import test | |
| # 'uv run' executes inside the environment created by 'uv sync' | |
| 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 |