Skip to content

Enhancing PR template #24

Enhancing PR template

Enhancing PR template #24

Workflow file for this run

name: kind-e2e
on:
pull_request: {}
jobs:
kind-e2e:
runs-on: ubuntu-latest
env:
KUBECONFIG: /home/runner/work/component-appcat/component-appcat/kindev/.kind/kind-config
steps:
- uses: actions/checkout@v4
with:
fetch-depth: "0"
- name: Checkout kindev repo
uses: actions/checkout@v4
with:
repository: vshn/kindev
path: kindev
- name: Run kindev
run: |
git config --global user.email "you@example.com"
git config --global user.name "Your Name"
cd kindev && make vshnall
- name: Run tests
run: make push-non-converged
env:
KUBECONFIG: $KUBECONFIG
- name: Run tests
run: make e2e-test
env:
KUBECONFIG: $KUBECONFIG