Daily Integration Test #262
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: Daily Integration Test | |
on: | |
workflow_dispatch: # Allows manual trigger | |
schedule: | |
# every UTC/GMT 8PM from Mon to Fri | |
- cron: "0 20 * * 1-5" | |
# Declare default permissions as read only. | |
permissions: read-all | |
jobs: | |
Daily-Integration-Tests: | |
runs-on: [daily] | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- task: "multi_class_cls" | |
- task: "multi_label_cls" | |
- task: "h_label_cls" | |
- task: "anomaly" | |
- task: "keypoint_detection" | |
- task: "detection" | |
- task: "instance_segmentation" | |
- task: "semantic_segmentation" | |
name: Daily-Integration-Test-${{ matrix.task }}-py312 | |
concurrency: | |
group: Daily-${{ github.workflow }}-${{ github.ref }}-${{ matrix.task }} | |
cancel-in-progress: true | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Install Python | |
uses: actions/setup-python@0b93645e9fea7318ecaed2b359559ac225c90a2b # v5.3.0 | |
with: | |
python-version: "3.12" | |
- name: Install tox | |
working-directory: lib | |
run: | | |
pip install '.[dev]' | |
- name: Run Daily Integration Test | |
working-directory: lib | |
run: tox -vv -e daily-integration-test-${{ matrix.task }} -- --run-category-only=False |