-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Install kind and minikube in the github action for cluster setup
- Loading branch information
hzeng21
committed
Oct 16, 2023
1 parent
7c47db9
commit 21be516
Showing
2 changed files
with
10 additions
and
4 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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" |
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