chore(deps): bump actions/checkout from 5 to 6 #386
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: test | |
| on: | |
| push: | |
| branches: [ main ] | |
| paths-ignore: | |
| - 'docs/**' | |
| - 'README.md' | |
| - '.goreleaser.yaml' | |
| pull_request: | |
| branches: [ main ] | |
| paths-ignore: | |
| - 'docs/**' | |
| - 'README.md' | |
| - '.goreleaser.yaml' | |
| permissions: | |
| contents: read | |
| jobs: | |
| # Run E2E test against all kubernetes versions on kind | |
| e2e-test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| k8s: | |
| - 1.30.0 | |
| - 1.31.0 | |
| - 1.32.0 | |
| - 1.33.0 | |
| - 1.34.0 | |
| fail-fast: false | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: helm/kind-action@v1.13.0 | |
| - name: Prepare | |
| run: kubectl apply -f testdata/nginx.yaml | |
| - name: Readiness | |
| run: kubectl wait --namespace ingress-nginx --for=condition=ready pod --selector=app=nginx --timeout=500s | |
| - run: go test -v -coverprofile=coverage.out . | |
| - name: Codecov | |
| uses: codecov/codecov-action@v5 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| flags: unittests | |
| fail_ci_if_error: true | |
| files: coverage.out |