-
Notifications
You must be signed in to change notification settings - Fork 8
42 lines (41 loc) · 1.09 KB
/
qa-run.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
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-13
- os: windows-2022
- os: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- 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