Added support for handing repository flag as required claim #2032
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: pull | |
| on: | |
| pull_request: | |
| types: [opened, edited, synchronize, reopened, ready_for_review] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| goos: ["darwin", "linux", "windows"] | |
| goarch: ["amd64", "arm64"] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: build ${{ matrix.goos }} ${{ matrix.goarch }} | |
| run: | | |
| GOARCH=${{ matrix.goarch }} GOOS=${{ matrix.goos }} GOFIPS140=v1.0.0 make build | |
| e2e-test-k3d: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: ./.github/actions/setup-go | |
| - uses: ./.github/actions/ensure-pack | |
| - name: build kyma binary | |
| run: make build | |
| - uses: kyma-project/serverless/.github/actions/create-k3d-cluster@9e8c091842e5c884e1770ef0bcc5b4b4d2894b74 | |
| - name: test | |
| run: make -C tests/k3d e2e-test | |
| - name: collect cluster info | |
| if: ${{ failure() }} | |
| run: make -C tests/k3d cluster-info |