mirror of
https://github.com/lora-aprs/LoRa_APRS_iGate.git
synced 2025-12-06 07:42:00 +01:00
add workflow
This commit is contained in:
parent
eb3fe327c7
commit
c302fd43a3
18
.github/workflows/dut_testing.yml
vendored
Normal file
18
.github/workflows/dut_testing.yml
vendored
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
name: DUT Tests
|
||||
|
||||
on: [pull_request]
|
||||
|
||||
jobs:
|
||||
dut_tests:
|
||||
name: DUT testing
|
||||
runs-on: dut-testing
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v2
|
||||
- name: Set up Python
|
||||
uses: actions/setup-python@v2
|
||||
- name: Install python reqirements
|
||||
run: cd testlib && make install
|
||||
- name: Run Tests
|
||||
run: cd testlib && make test
|
||||
|
||||
Loading…
Reference in a new issue