chore(deps): Bump k8s.io/code-generator from 0.32.3 to 0.32.7 #704
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: unit-test | |
| permissions: | |
| contents: read # Needed to check out the repository | |
| pull-requests: write # Needed to post test results as PR comments | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ master ] | |
| jobs: | |
| unit-test: | |
| if: github.repository_owner == 'keikoproj' | |
| name: unit-test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Set up Go 1.x | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: 1.24 | |
| - name: Check out code into the Go module directory | |
| uses: actions/checkout@v4 | |
| - name: Build | |
| run: | | |
| make manager | |
| - name: Test | |
| run: | | |
| make test | |
| - name: Upload coverage reports to Codecov | |
| uses: codecov/codecov-action@v5 | |
| with: | |
| file: ./coverage.txt | |
| token: ${{ secrets.CODECOV_TOKEN }} |