We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 99e06c9 commit a104c0cCopy full SHA for a104c0c
.github/workflows/integration-test.yml
@@ -49,7 +49,7 @@ jobs:
49
run: |
50
if [ -f "kind-cluster-config.yaml" ]; then
51
echo "cluster-type=kind-with-config" >> "${GITHUB_OUTPUT}"
52
- if [ -f "minikube-cluster-config.yaml" ]; then
+ elif [ -f "minikube-cluster-config.yaml" ]; then
53
echo "cluster-type=minikube" >> "${GITHUB_OUTPUT}"
54
else
55
echo "cluster-type=kind" >> "${GITHUB_OUTPUT}"
@@ -71,6 +71,8 @@ jobs:
71
- name: Create Minikube cluster
72
if: ${{ steps.check-cluster-config.outputs.cluster-type == 'minikube' }}
73
uses: medyagh/setup-minikube@cea33675329b799adccc9526aa5daccc26cd5052
74
+ env:
75
+ KUBECONFIG: "tests/integration/${{ matrix.test }}/kubeconfig.yaml"
76
77
- name: Run test
78
working-directory: "tests/integration/${{ matrix.test }}"
0 commit comments