mirror of
https://github.com/CovidBraceletPrj/CovidBracelet.git
synced 2024-12-06 09:35:43 +01:00
b4b7d925f7
Signed-off-by: Patrick Rathje <git@patrickrathje.de>
17 lines
391 B
YAML
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 |