-
Notifications
You must be signed in to change notification settings - Fork 222
36 lines (34 loc) · 1.03 KB
/
test-ethd.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
name: Test ethd
run-name: Test ethd
on:
push:
pull_request:
types: [opened, synchronize, labeled, unlabeled]
branches: [main]
jobs:
test-ethd:
if: |
contains(github.event.pull_request.labels.*.name, 'test-ethd') ||
contains(github.event.pull_request.labels.*.name, 'test-all') ||
github.event_name == 'push'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Expect
run: sudo apt-get install -y expect whiptail
- name: Test ethd config defaults
run: expect ./.github/test-ethd-config.exp all-defaults
env:
TERM: xterm
- name: Test ethd config no checkpoint
run: expect ./.github/test-ethd-config.exp no-checkpoint
env:
TERM: xterm
- name: Test ethd config no mev
run: expect ./.github/test-ethd-config.exp no-mev
env:
TERM: xterm
- name: Test ethd config no grafana
run: expect ./.github/test-ethd-config.exp no-grafana
env:
TERM: xterm