Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions .github/workflows/build-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,13 @@ jobs:
run: |
git diff --exit-code docs/api-reference.md || (echo "API reference is out of date. Run 'make docs'" && exit 1)

- name: Regenerate AGENTS.md generated blocks
run: make agents

- name: Check for stale AGENTS.md
run: |
git diff --exit-code AGENTS.md || (echo "AGENTS.md is out of date. Run 'make agents'" && exit 1)

test:
name: Unit Tests
runs-on: ubuntu-latest
Expand Down Expand Up @@ -191,6 +198,11 @@ jobs:

- name: Set up Helm
uses: azure/setup-helm@v5
with:
# Pin to Helm 3.x: setup-helm's "latest" now installs Helm 4, whose
# multi-document template output differs (trailing newline), which
# breaks the nebari-app golden tests. The goldens are Helm 3-rendered.
version: v3.19.0

- name: Install foundational services
run: dev/scripts/services/install.sh
Expand Down Expand Up @@ -247,6 +259,11 @@ jobs:

- name: Set up Helm
uses: azure/setup-helm@v5
with:
# Pin to Helm 3.x: setup-helm's "latest" now installs Helm 4, whose
# multi-document template output differs (trailing newline), which
# breaks the nebari-app golden tests. The goldens are Helm 3-rendered.
version: v3.19.0

- name: Install kubebuilder
run: |
Expand Down
Loading
Loading