feat: enable kueue integration by ensuing that labels added to Notebooks are propogated to the underlying StatefulSet #65
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: Run Notebook Controller unit tests | |
| on: | |
| pull_request: | |
| paths: | |
| - components/notebook-controller/** | |
| - releasing/version/VERSION | |
| branches: | |
| - main | |
| - notebooks-v1 | |
| - v*-branch | |
| jobs: | |
| build: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version-file: 'components/notebook-controller/go.mod' | |
| check-latest: true | |
| - name: Run unit tests | |
| run: | | |
| cd components/notebook-controller | |
| make test |