Merge acto-dev commits #96
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: Kubernetes Engine Test | |
on: | |
push: | |
paths: | |
- acto/kubernetes_engine/** | |
workflow_dispatch: | |
jobs: | |
KubernetesEngineTest: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: '1.20.5' | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements-dev.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 KubernetesEngineTest | |
run: | | |
pytest -m "kubernetes_engine" |