Integration [dependabot/go_modules/github.com/jessevdk/go-flags-1.6.1]: Bump github.com/jessevdk/go-flags from 1.5.0 to 1.6.1 Bumps [github.com/jessevdk/go-flags](https://github.com/jessevdk/go-flags) from 1.5.0 to 1.6.1. - [Release notes](https://github.com/jessevdk/go-flags/releases) - [Commits](https://github.com/jessevdk/go-flags/compare/v1.5.0...v1.6.1) --- updated-dependencies: - dependency-name: github.com/jessevdk/go-flags dependency-type: direct:production update-type: version-update:semve... #1290
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_call: | ||
inputs: | ||
workflow: | ||
default: all | ||
type: string | ||
workflow_dispatch: | ||
inputs: | ||
workflow: | ||
description: Tests to run | ||
required: true | ||
type: choice | ||
options: | ||
- run-integration-tests-cf-env | ||
- run-integration-tests-cf-env-with-client-creds | ||
# - run-integration-tests-cf-env-with-min-capi | ||
- run-cats-cf-env | ||
workflow_run: | ||
workflows: | ||
- "Tests" | ||
types: | ||
- completed | ||
jobs: | ||
run-integration-tests-cf-env: | ||
name: Integration tests | ||
if: ${{ inputs.workflow == 'all' || inputs.workflow == 'run-integration-tests-cf-env' }} | ||
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: ${{ inputs.workflow == 'all' || inputs.workflow == 'run-integration-tests-cf-env-with-client-creds' }} | ||
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: ${{ inputs.workflow == 'all' || inputs.workflow == 'run-integration-tests-cf-env-with-min-capi' }} | ||
# uses: ./.github/workflows/tests-integration-reusable.yml | ||
# with: | ||
# capi-version: min | ||
# run-with-client-creds: false | ||
# os: ubuntu-latest | ||
# name: Integration MIN CAPI | ||
# pool-name: cfd_16_11_0 | ||
# pool-namespace: tas-devex | ||
# is-pr: ${{ github.event_name != 'workflow_dispatch' }} | ||
# secrets: inherit | ||
run-cats-cf-env: | ||
name: CATS | ||
needs: | ||
- run-integration-tests-cf-env | ||
- run-integration-tests-cf-env-with-client-creds | ||
if: ${{ inputs.workflow == 'all' || inputs.workflow == 'run-cats-cf-env' }} | ||
uses: ./.github/workflows/tests-integration-reusable.yml | ||
with: | ||
capi-version: edge | ||
run-with-client-creds: false | ||
os: ubuntu-latest | ||
name: cats | ||
is-pr: ${{ github.event_name != 'workflow_dispatch' }} | ||
Check failure on line 77 in .github/workflows/tests-integration.yml GitHub Actions / Tests: IntegrationInvalid workflow file
|
||
secrets: inherit |