Skip to content

qa-run

qa-run #26

Workflow file for this run

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@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
- 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
shell: bash
run: echo $TEST_EXAMPLE is secrets value