1
0
mirror of https://github.com/CovidBraceletPrj/CovidBracelet.git synced 2024-05-31 17:58:17 +02:00
CovidBracelet/.github/workflows/build.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

17 lines
391 B
YAML

name: build
on: [push, pull_request]
jobs:
build:
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
- name: Run PlatformIO Build
run: platformio run --environment nrf52840_dk