Merge branch 'master' into python_test_framework #23
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: DUT Tests | |
on: [push, pull_request] | |
jobs: | |
hil_tests: | |
name: HIL testing | |
runs-on: dut-testing | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Install python reqirements | |
run: cd HIL && make install | |
- name: Run Tests | |
run: cd HIL && make test | |
dut_tests: | |
name: DUT testing | |
runs-on: dut-testing | |
needs: hil_tests | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Install python reqirements | |
run: make install | |
- name: Run Tests | |
run: make test |