Chore/tests #38
Workflow file for this run
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
name: π§βπΎ Integration-Test | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
Test-on-cluster: | |
runs-on: ubuntu-latest | |
steps: | |
- name: π Testing on a k8s Kind Cluster | |
uses: helm/[email protected] | |
- name: π save the current kube-context config file as environment variable | |
id: kube-context | |
run: | | |
kubectl config view --raw | |
echo kubectl config view --raw | base64 | |
echo "kubeconfig=$(kubectl config view --raw | base64)" >> $GITHUB_ENV | |
- name: π₯ Checkout code | |
uses: actions/[email protected] | |
- run: | | |
cat $HOME/.kube/config | |
- name: π± Deploy preview env with Garden | |
uses: garden-io/[email protected] | |
with: | |
command: test | |
# kubeconfig-location: $HOME/.kube/config | |
kubeconfig: $(kubectl config view --raw | base64) | |
- run: | | |
cat $HOME/.kube/config |