Test ethd #1514
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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@v4 | |
- 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 |