chore(deps): update odh-kserve-agent-v2-25 to a53d941 #4128
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 Tests2 | |
| on: | |
| push: | |
| branches: | |
| - rhoai | |
| - incubation | |
| - main | |
| pull_request: | |
| jobs: | |
| unit-test: | |
| name: Run tests and collect coverage on internal and pkg | |
| 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: ./internal/... ./pkg/... | |
| run: make unit-test | |
| - name: Upload results to Codecov | |
| uses: codecov/codecov-action@v5.4.3 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} |