feat: Enable IP Assignment via service.spec.loadBalancerIP #50
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: PR Check | |
| on: [pull_request] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| name: Test & Build | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Setup up Go 1.24 | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version: "1.24" | |
| - name: Check out code | |
| uses: actions/checkout@v5 | |
| - name: Lint Check | |
| run: make lint | |
| - name: Run Script | |
| run: make test | |
| - name: Build Docker Image | |
| run: make docker | |