Skip to content

Commit

Permalink
Add E2E workflow github action
Browse files Browse the repository at this point in the history
Update action name and path

Edit lines and comments

Git rules fix
  • Loading branch information
NaomiHaser committed Jul 6, 2021
1 parent 565f151 commit 5b1f249
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/e2e-workflow.yaml
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

0 comments on commit 5b1f249

Please sign in to comment.