[release-v1.16] Update quay.io/konflux-ci/konflux-vanguard/task-rpms-signature-scan:0.2 Docker digest to 0b10508 #2481
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: Func E2E Test | |
| on: [pull_request] | |
| jobs: | |
| test: | |
| name: E2E Test | |
| strategy: | |
| matrix: | |
| os: ["ubuntu-latest"] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Set Environment Variables | |
| run: | | |
| echo "KUBECONFIG=${{ github.workspace }}/hack/bin/kubeconfig.yaml" >> "$GITHUB_ENV" | |
| echo "PATH=${{ github.workspace }}/hack/bin:$PATH" >> "$GITHUB_ENV" | |
| - uses: actions/checkout@v4 | |
| - uses: ./.github/composite/go-setup | |
| - name: Install Binaries | |
| run: ./hack/install-binaries.sh | |
| - name: Allocate Cluster | |
| run: ./hack/allocate.sh | |
| - name: Local Registry | |
| run: ./hack/registry.sh | |
| - name: E2E Test | |
| run: make test-e2e | |
| - uses: codecov/codecov-action@v4 | |
| with: | |
| files: ./coverage.txt | |
| flags: e2e-test |