From d1919045b4e15cec809eac9d970131596c499410 Mon Sep 17 00:00:00 2001 From: Peter Buchegger Date: Sun, 7 Nov 2021 22:43:35 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=20add=20first=20HIL=20test?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit add first HIL test --- .github/workflows/dut_testing.yml | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dut_testing.yml b/.github/workflows/dut_testing.yml index ef76b6d..f75d8ea 100644 --- a/.github/workflows/dut_testing.yml +++ b/.github/workflows/dut_testing.yml @@ -3,8 +3,8 @@ name: DUT Tests on: [push, pull_request] jobs: - dut_tests: - name: DUT testing + hil_tests: + name: HIL testing runs-on: dut-testing steps: - name: Checkout code @@ -13,3 +13,15 @@ jobs: 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