[McByte part 7] Mask manager delayed mask creation #260
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: Integration Tests | |
| on: | |
| pull_request: | |
| paths: | |
| - 'src/trackers/core/**' | |
| - 'src/trackers/utils/**' | |
| - 'src/trackers/eval/**' | |
| - 'tests/**' | |
| jobs: | |
| integration-tests: | |
| name: Integration Validation | |
| timeout-minutes: 15 | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: 📥 Checkout the repository | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: 🐍 Install uv and set Python version | |
| uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0 | |
| with: | |
| python-version: "3.12" | |
| activate-environment: true | |
| - name: 🚀 Install Packages | |
| run: uv sync --frozen --group dev | |
| - name: 🧪 Run Integration Tests | |
| run: uv run pytest -m integration -v --tb=short |