-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update action name and path Edit lines and comments Git rules fix
- Loading branch information
1 parent
565f151
commit 5b1f249
Showing
1 changed file
with
35 additions
and
0 deletions.
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,35 @@ | ||
name: E2E Workflow | ||
|
||
on: | ||
# Run this on pushes to main | ||
push: | ||
branches: | ||
- main | ||
|
||
# Or when PR operations are done | ||
pull_request: | ||
types: | ||
- opened | ||
- reopened | ||
- synchronize | ||
|
||
jobs: | ||
run-E2E-workflow: | ||
name: Run E2E Workflow on KinD cluster | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
kube-tag: | ||
- v1.18.2 | ||
steps: | ||
- name: Check out code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Install Helm | ||
uses: azure/setup-helm@v1 | ||
with: | ||
version: v3.3.0 | ||
|
||
- name: Run Start | ||
run: bin/test-workflow/start |