chore(deps-dev): bump hugo-extended from 0.161.1 to 0.162.1 in /website in the website-deps group #17702
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: CI-TEST | |
| on: | |
| push: | |
| branches: | |
| - 'main' | |
| - 'release-v*' | |
| - 'staging/*' | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| ci-test: | |
| runs-on: ubuntu-latest | |
| if: github.repository == 'aws/karpenter-provider-aws' | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| k8sVersion: ["1.29.x", "1.30.x", "1.31.x", "1.32.x", "1.33.x", "1.34.x", "1.35.x"] | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.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.35.x' | |
| env: | |
| COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| run: goveralls -coverprofile=coverage.out -service=github |