Enable MutatingAdmissionPolicy gate.
#18
This file contains hidden or 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: Tests | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| jobs: | |
| tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v3 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Set up Docker Compose | |
| uses: docker/setup-compose-action@v1 | |
| - name: Start K3S | |
| run: make start-k3s | |
| - name: Run load test | |
| run: make test-load | |
| - name: Run conformance tests | |
| run: make test-conformance | |
| - name: Run flaky conformance tests | |
| run: make test-conformance-flaky || true |