-
Notifications
You must be signed in to change notification settings - Fork 3
30 lines (29 loc) · 982 Bytes
/
workflow.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
name: Eggplant Runner Build
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
Run-Test-Configuration:
strategy:
max-parallel: 1
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
name: Run Test Configuration
steps:
- run: echo "Trigger event.. ${{ github.event_name }}. Runner OS.. ${{ runner.os }}."
- name: Eggplant Runner
uses: keysight-eggplant/eggplant-github-action@main
with:
dryRun: true
serverURL: "http://localhost:8000"
clientID: "CLIENT_ID"
testConfigID: "TEST_CONFIG_ID" # Test configuration which need to perform execution
clientSecret: "CLIENT_SECRET" # Eggplant DAI service client secret
# Alternatively, DAI client secret can be set as repo secret
# by going to GitHub Settings > Secrets > Actions
# clientSecret: "${{secrets.DAI_CLIENT_SECRET}}"