chore(deps): update odh-workbench-jupyter-minimal-cuda-py312-v2-25 to e7a8319 #5438
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: Unit Tests1 | |
| on: | |
| push: | |
| branches: | |
| - rhoai | |
| - incubation | |
| - main | |
| pull_request: | |
| jobs: | |
| unit-test: | |
| name: Run tests and collect coverage on tests/integration | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version-file: go.mod | |
| - name: Run Unit Tests | |
| env: | |
| TEST_SRC: ./tests/integration/... | |
| run: make unit-test | |
| - name: Upload results to Codecov | |
| uses: codecov/codecov-action@v5.4.3 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} |