Integration [main]: Fix go.mod gomega When we ran Ginkgo v2 tests for the first time we got the following error: ``` go install github.com/onsi/ginkgo/v2/ginkgo go install github.com/onsi/gomega/matchers shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0} go: downloading github.com/onsi/ginkgo/v2 v2.15.0 go: downloading github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 go: downloading golang.org/x/tools v0.17.0 go: downloading github.com/google/pprof v0.0.0-20230912144702-c3... #885
This file contains 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: "Tests: Integration" | |
run-name: "Integration [${{ github.event.workflow_run.head_branch }}]: ${{ github.event.workflow_run.head_commit.message }}" | |
on: | |
workflow_dispatch: | |
workflow_run: | |
workflows: | |
- "Tests" | |
types: | |
- completed | |
jobs: | |
run-integration-tests-cf-env: | |
name: Integration tests | |
if: ${{ github.event_name == 'workflow_dispatch' || github.event.workflow_run.conclusion == 'success' }} | |
uses: ./.github/workflows/tests-integration-reusable.yml | |
with: | |
capi-version: edge | |
run-with-client-creds: false | |
os: ubuntu-latest | |
name: Integration | |
secrets: inherit | |
run-integration-tests-cf-env-with-client-creds: | |
name: client creds | |
if: ${{ github.event_name == 'workflow_dispatch' || github.event.workflow_run.conclusion == 'success' }} | |
uses: ./.github/workflows/tests-integration-reusable.yml | |
with: | |
capi-version: edge | |
run-with-client-creds: true | |
os: ubuntu-latest | |
name: Integration client creds | |
secrets: inherit | |
run-integration-tests-cf-env-with-min-capi: | |
name: MIN CAPI | |
if: ${{ github.event_name == 'workflow_dispatch' || github.event.workflow_run.conclusion == 'success' }} | |
uses: ./.github/workflows/tests-integration-reusable.yml | |
with: | |
capi-version: min | |
run-with-client-creds: false | |
os: ubuntu-latest | |
name: Integration MIN CAPI | |
secrets: inherit | |
#run-integration-windows: | |
# name: Windows | |
# if: ${{ github.event_name == 'workflow_dispatch' || github.event.workflow_run.conclusion == 'success' }} | |
# uses: ./.github/workflows/tests-integration-reusable.yml | |
# with: | |
# capi-version: edge | |
# run-with-client-creds: false | |
# os: windows-latest | |
# name: Integration windows | |
# secrets: inherit | |
#run-integration-windows-client-credentials: | |
# name: Windows with client credentials | |
# if: ${{ github.event_name == 'workflow_dispatch' || github.event.workflow_run.conclusion == 'success' }} | |
# uses: ./.github/workflows/tests-integration-reusable.yml | |
# with: | |
# capi-version: edge | |
# run-with-client-creds: true | |
# os: windows-latest | |
# name: Integration windows client credentials | |
# secrets: inherit |