1
0
mirror of https://github.com/CovidBraceletPrj/CovidBracelet.git synced 2024-05-29 16:58:22 +02:00
CovidBracelet/.github/workflows/test.yaml
Patrick Rathje b4b7d925f7 Run build and test actions on pull_requests too
Signed-off-by: Patrick Rathje <git@patrickrathje.de>
2021-07-23 11:46:07 +02:00

20 lines
456 B
YAML

name: test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Python
uses: actions/setup-python@v1
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install platformio
platformio upgrade --dev
platformio update
- name: Run PlatformIO Tests
run: platformio test --environment desktop