forked from LambdaTest/python-selenium-sample
-
Notifications
You must be signed in to change notification settings - Fork 0
32 lines (29 loc) · 883 Bytes
/
Copy pathmaini.yml
File metadata and controls
32 lines (29 loc) · 883 Bytes
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
name: HyperExecute
on:
workflow_dispatch:
inputs:
username:
required: true
description: LT Username
accessKey:
description: LT Access Key
required: true
jobs:
HyperExecute:
runs-on: ubuntu-latest
timeout-minutes: 15
strategy:
fail-fast: false
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Download CLI and Setting Environment Variables
shell: bash
run: |
curl https://downloads.lambdatest.com/hyperexecute/linux/hyperexecute -o hyperexecute
chmod +x hyperexecute
- name: Executing the Job
shell: bash
run: |
./hyperexecute --user rahulblambdatest --key LT_WpyWKRp2rPDxKArORDD6iUrSf0hm519hwgVWcTFpI3FSex --download-artifacts --config hyperexecute.yaml
echo "Test completion"