qa-run #16
Workflow file for this run
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: "qa-run" | |
on: | |
workflow_dispatch: | |
inputs: | |
apiUrl: | |
description: "API URL to use" | |
required: true | |
type: string | |
identityUrl: | |
description: "Identity URL to use" | |
required: true | |
type: string | |
secretId: | |
description: "Secret GUID to use" | |
required: true | |
type: string | |
jobs: | |
run: | |
name: Running QA test on ${{ matrix.settings.os }} | |
runs-on: ${{ matrix.settings.os || 'ubuntu-latest' }} | |
strategy: | |
fail-fast: false | |
matrix: | |
settings: | |
- os: macos-12 | |
- os: windows-2022 | |
- os: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2 | |
- name: Run Action | |
uses: ./ | |
with: | |
access_token: ${{ secrets.ACCESS_TOKEN }} | |
api_url: ${{ inputs.apiUrl }} | |
identity_url: ${{ inputs.identityUrl }} | |
secrets: | | |
${{inputs.secretId}} > TEST_EXAMPLE | |
- name: Show secrets | |
run: echo $TEST_EXAMPLE is secrets value |