Skip to content

Merge pull request #501 from opendatahub-io/temp-v1.9-branch-12414671134 #436

Merge pull request #501 from opendatahub-io/temp-v1.9-branch-12414671134

Merge pull request #501 from opendatahub-io/temp-v1.9-branch-12414671134 #436

name: Run ODH Notebook Controller unit tests
on:
push:
pull_request:
branches:
- main
- v1.9-branch
paths:
- .github/workflows/odh_notebook_controller_unit_test.yaml
- components/odh-notebook-controller/**
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v5
with:
check-latest: true
go-version-file: components/odh-notebook-controller/go.mod
cache-dependency-path: components/odh-notebook-controller/go.sum
- name: Run unit tests
run: |
cd components/odh-notebook-controller
make test
- name: Upload results to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./components/odh-notebook-controller/cover-rbac-false.out,./components/odh-notebook-controller/cover-rbac-true.out
disable_search: true