Aligning the library with v1 release of VAP #127
Workflow file for this run
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: "main-policy-automation" | |
on: | |
pull_request: | |
types: | |
[ opened, synchronize, reopened ] | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- '**.md' | |
- '.github/workflow/release.yaml' | |
jobs: | |
test-all-policies: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: start minikube | |
id: minikube | |
uses: slashben/setup-minikube@master | |
with: | |
kubernetes-version: v1.30.0 | |
container-runtime: containerd | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- uses: azure/setup-kubectl@v3 | |
- name: Running all control policy tests | |
run: | | |
pip install --upgrade pip | |
pip install -r requirements.txt | |
./scripts/run-all-control-tests.sh | |