-
Notifications
You must be signed in to change notification settings - Fork 1
48 lines (43 loc) · 1.25 KB
/
1_0_swapAll.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
45
46
47
48
name: 1.0. Swap - All
on:
workflow_dispatch:
inputs:
base_url:
description: 'Environment base URL to run the tests on.'
type: string
default: 'https://staging.summer.fi'
required: true
flags_features:
description: 'Features Flags to enable / disable. For example: "flag1:true flag2:false"'
type: string
default: ''
required: false
jobs:
swap-aaveV3-tests:
uses: ./.github/workflows/z_Reusable_Swap.yml
with:
protocol: aavev3
base_url: ${{ inputs.base_url }}
flags_features: ${{ inputs.flags_features}}
secrets: inherit
swap-maker-tests:
uses: ./.github/workflows/z_Reusable_Swap.yml
with:
protocol: maker
base_url: ${{ inputs.base_url }}
flags_features: ${{ inputs.flags_features}}
secrets: inherit
swap-morphoblue-tests:
uses: ./.github/workflows/z_Reusable_Swap.yml
with:
protocol: morphoblue
base_url: ${{ inputs.base_url }}
flags_features: ${{ inputs.flags_features}}
secrets: inherit
swap-spark-tests:
uses: ./.github/workflows/z_Reusable_Swap.yml
with:
protocol: spark
base_url: ${{ inputs.base_url }}
flags_features: ${{ inputs.flags_features}}
secrets: inherit