changed workflow to only use non-dev ACR #5
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 | |
# AAW: commented out because it was always failing | |
# 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 |