Skip to content

Commit

Permalink
Install kind and minikube in the github action for cluster setup
Browse files Browse the repository at this point in the history
  • Loading branch information
hzeng21 authored and tylergu committed Nov 4, 2023
1 parent 96a1b2e commit daeebcc
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/kubernetes_engine_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,13 @@ jobs:
python -m pip install --upgrade pip
pip install -r requirements.txt
make
- name: Install Kind
run: |
go install sigs.k8s.io/[email protected]
- name: Install minikube
run: |
curl -LO https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64
sudo install minikube-linux-amd64 /usr/local/bin/minikube
- name: Run unittest
run: |
pytest -m "kubernetes_engine"

0 comments on commit daeebcc

Please sign in to comment.