Prepare release v0.150.0 #1579
Workflow file for this run
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: EKS Add-on Tests | |
| on: | |
| pull_request: | |
| push: | |
| branches: [ main ] | |
| permissions: | |
| contents: read | |
| jobs: | |
| eks-addon-tests: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| # TODO: Use ci-matrix.json instead | |
| k8s_version: ["1.28", "1.29", "1.30", "1.31", "1.32", "1.33"] | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 | |
| - name: Set up Helm | |
| uses: azure/setup-helm@1a275c3b69536ee54be43f2070a358922e12c8d4 #v4 | |
| with: | |
| version: v4.1.1 | |
| - name: Run EKS Add-on tests | |
| env: | |
| K8S_VERSION: ${{ matrix.k8s_version }} | |
| run: ./eks_addon/run_tests.sh |