-
Notifications
You must be signed in to change notification settings - Fork 6
44 lines (40 loc) · 1.28 KB
/
sub-validate-swift.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
43
44
name: ❖ Validate
on:
workflow_call:
inputs:
stage:
description: 'the environment to validate'
required: true
type: string
stage-url:
description: 'the URL of the environment'
required: true
type: string
permissions:
contents: read
checks: write
id-token: write
jobs:
validate-swift:
name: Swift Integration Tests - ${{ inputs.stage }}
runs-on: macos-latest-xlarge
permissions:
contents: write
environment:
name: ${{ inputs.stage }}
url: ${{ inputs.stage-url }}
steps:
- uses: actions/checkout@v4
with:
repository: WalletConnect/WalletConnectSwiftV2
- name: Run Notify Tests
uses: ./.github/actions/run_tests_without_building
with:
type: 'notify-tests'
notify-endpoint: ${{ vars.VALIDATION_NOTIFY_ENDPOINT }}
relay-endpoint: ${{ vars.VALIDATION_RELAY_ENDPOINT }}
explorer-endpoint: ${{ vars.VALIDATION_EXPLORER_ENDPOINT }}
project-id: ${{ secrets.VALIDATION_SWIFT_PROJECT_ID }}
gm-dapp-host: ${{ vars.VALIDATION_DAPP_DOMAIN }}
gm-dapp-project-id: ${{ secrets.VALIDATION_SWIFT_DAPP_PROJECT_ID }}
gm-dapp-project-secret: ${{ secrets.VALIDATION_SWIFT_DAPP_PROJECT_SECRET }}