Fix: operator-sdk version in Makefile #68
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: Check Code Generation 🧪 | |
| on: | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| check-dependencies-gen: | |
| name: Check Go Modules | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout 🧲 | |
| uses: actions/checkout@v4 | |
| - name: Setup Go ⬇️ | |
| uses: actions/setup-go@v3 | |
| with: | |
| go-version: 1.24.2 | |
| - name: Check dependencies Generation 🧪 | |
| run: | | |
| go mod tidy | |
| git diff --ignore-matching-lines='.*createdAt:.*' --exit-code | |
| check-code-gen: | |
| name: Check SDK Code Generation 🧪 | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout 🧲 | |
| uses: actions/checkout@v4 | |
| - name: Setup Go ⬇️ | |
| uses: actions/setup-go@v3 | |
| with: | |
| go-version: 1.24.2 | |
| - name: Check dependencies Generation 🧪 | |
| run: | | |
| make generate manifests | |
| git diff --ignore-matching-lines='.*createdAt:.*' --exit-code |