Skip to content

Test

Test #82

Workflow file for this run

name: Platform IO CI
on: [push]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: "true"
- name: Set up python
uses: actions/setup-python@v4
with:
python-version: "3.9"
- name: Install PlatformIO Core
run: |
pip install --upgrade platformio
- name: Build PlatformIO Project
run: platformio run -v
- name: Archive firmwares
uses: actions/upload-artifact@v3
with:
name: firmwares.zip
path: .pio/build/*/*.bin