chore(deps): bump aws-actions/aws-codebuild-run-build from b0a7ca5730725c01b45af8866100667e32e0a9b1 to b31229dccde89c01530699df08ad07e8d7ac21a8 in /.github/actions/e2e/run-tests-private-cluster in the action-deps group #9281
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: CI-TEST | |
on: | |
push: | |
branches: | |
- 'main' | |
- 'release-v*' | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
ci-test: | |
runs-on: ubuntu-latest | |
if: github.repository == 'aws/karpenter-provider-aws' | |
strategy: | |
matrix: | |
k8sVersion: ["1.23.x", "1.24.x", "1.25.x", "1.26.x", "1.27.x", "1.28.x", "1.29.x"] | |
steps: | |
- uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2 | |
- uses: ./.github/actions/install-deps | |
with: | |
k8sVersion: ${{ matrix.k8sVersion }} | |
- run: K8S_VERSION=${{ matrix.k8sVersion }} make ci-test | |
- name: Send coverage | |
# should only send converage once https://docs.coveralls.io/parallel-builds | |
if: matrix.k8sVersion == '1.29.x' | |
env: | |
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: goveralls -coverprofile=coverage.out -service=github |