Skip to content

Commit 1afda12

Browse files
committed
Test GTAI
1 parent 979c1f7 commit 1afda12

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

.github/workflows/test.yml

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: mxiao test
2+
3+
on:
4+
pull_request:
5+
branches: ['main']
6+
7+
jobs:
8+
test-1:
9+
name: Run Soak Tests Against Changed Adapters
10+
runs-on: ubuntu-latest
11+
environment: QA
12+
permissions:
13+
id-token: write
14+
contents: read
15+
checks: write
16+
pull-requests: write
17+
concurrency:
18+
group: qa-soaktest-${{ github.ref }}
19+
cancel-in-progress: true
20+
steps:
21+
- name: Setup GitHub Token
22+
id: setup-github-token
23+
uses: smartcontractkit/.github/actions/setup-github-token@9e7cc0779934cae4a9028b8588c9adb64d8ce68c # [email protected]
24+
with:
25+
aws-role-arn: ${{ secrets.AWS_ROLE_ARN_FOR_QA_GITHUB_TOKEN }}
26+
aws-lambda-url: ${{ secrets.GATI_LAMBDA_DATA_FEEDS_URL }}
27+
aws-region: ${{ secrets.AWS_REGION }}
28+
aws-role-duration-seconds: '1800' # this is optional and defaults to 900
29+
- name: Clone adapter-secrets repo
30+
env:
31+
GITHUB_TOKEN: ${{ steps.setup-github-token.outputs.access-token }}
32+
run: git clone https://oauth2:${GITHUB_TOKEN}@github.com/smartcontractkit/adapter-secrets.git

0 commit comments

Comments
 (0)