-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add workflow dispatch to check lesson plan
- Loading branch information
1 parent
9619bd6
commit 6be2a8c
Showing
2 changed files
with
50 additions
and
1 deletion.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
name: Workshop Flow | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
# A job to help check the workshop flow | ||
diff-train: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- run: git diff --color origin/step1 origin/step2 | ||
- run: git diff --color origin/step2 origin/step3 | ||
- run: git diff --color origin/step3 origin/step4 | ||
|
||
sanity-check: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Create k8s Kind Cluster | ||
uses: helm/kind-action@v1 | ||
|
||
- name: Install Tilt | ||
run: curl -fsSL https://raw.githubusercontent.com/tilt-dev/tilt/master/scripts/install.sh | bash | ||
|
||
- uses: cue-lang/[email protected] | ||
|
||
- run: git checkout origin/step1 | ||
|
||
- run: tilt ci | ||
|
||
- run: git checkout origin/step2 | ||
|
||
- run: tilt ci | ||
|
||
- run: git checkout origin/step3 | ||
|
||
- run: tilt ci | ||
|
||
- run: git checkout origin/step4 | ||
|
||
- run: tilt ci | ||
|
||
- run: tilt down |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,6 @@ on: | |
branches: [ "*" ] | ||
|
||
jobs: | ||
|
||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
|