Skip to content

Commit

Permalink
fix: add kubectl
Browse files Browse the repository at this point in the history
  • Loading branch information
kaiwalyajoshi committed Jan 9, 2024
1 parent 1e68bd1 commit f9aaa81
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ on:
types:
- created

env:
KUBERNETES_VERSION: v1.27.6

# jobs to run
jobs:
build:
Expand Down Expand Up @@ -51,12 +54,16 @@ jobs:
run: make check
- name: unit tests
run: make test
- uses: azure/setup-kubectl@v3
id: install
with:
version: '${{ env.KUBERNETES_VERSION }}'
- name: minikube setup
uses: medyagh/setup-minikube@latest
with:
driver: docker
container-runtime: containerd
kubernetes-version: v1.27.6
kubernetes-version: ${{ env.KUBERNETES_VERSION }}
wait: all
- name: verify minikube
run: |
Expand Down

0 comments on commit f9aaa81

Please sign in to comment.