Sync changes from the rhds/old-main branch that Rishab created, so we can delete that branch #254
Workflow file for this run
This file contains 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/** | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: '1.17' | |
check-latest: true | |
- name: Run unit tests | |
run: | | |
cd components/notebook-controller | |
make test |