KFLUXINFRA-3613: Update OWNERS files for infra-owned components #8
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: Test Tekton-Kueue Configuration | |
| on: | |
| pull_request: | |
| branches: [ main ] | |
| paths: | |
| - 'components/kueue/**' | |
| - 'hack/test-tekton-kueue-config.py' | |
| - '.github/workflows/test-tekton-kueue-config.yaml' | |
| jobs: | |
| test-tekton-kueue-config: | |
| name: Test Tekton-Kueue CEL expressions | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Set up Python 3 | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: '3.x' | |
| - name: Install Python dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install PyYAML | |
| - name: Check prerequisites | |
| run: | | |
| python hack/test-tekton-kueue-config.py --check-setup | |
| - name: Run Tekton-Kueue configuration tests | |
| run: | | |
| python hack/test-tekton-kueue-config.py --verbose | |
| - name: Report success | |
| if: success() | |
| run: | | |
| echo "✅ All Tekton-Kueue CEL expression tests passed successfully" |