build(deps): bump k8s.io/apimachinery from 0.35.2 to 0.35.3 #11
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
| --- | |
| on: | |
| pull_request: {} | |
| name: Lint & Format | |
| jobs: | |
| lint: | |
| name: Lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Code | |
| uses: actions/checkout@v5 | |
| - name: Set up Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version-file: go.mod | |
| - name: Lint | |
| run: make lint | |
| fmt: | |
| name: Format | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Code | |
| uses: actions/checkout@v5 | |
| - name: Set up Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version-file: go.mod | |
| - name: Format | |
| run: make fmt | |
| - name: Check for Changes | |
| run: | | |
| if ! git diff --quiet --exit-code; then | |
| echo "::error::Code is not formatted. Run 'make fmt' and commit the result." | |
| git diff | |
| exit 1 | |
| fi |