Files
LoraSA/.github/workflows/default-board-build.yaml
Konrad Iturbe 9a26372dc1 Add basic CI integration using PlatformIO in GitHub CI (#143)
* Add a basic CI builder

* Remove expressif step

* Add more builders

* Fix issue with Async Web Server being deprecated

* Redd heltec_wifi_lora_32_V3_2

* Fix heltec_wifi_lora_32_V3 target
2025-03-13 11:44:09 +01:00

23 lines
548 B
YAML

name: Build heltec board
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: |
~/.cache/pip
~/.platformio/.cache
key: ${{ runner.os }}-pio
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install PlatformIO Core
run: pip install --upgrade platformio
- name: Build PlatformIO Project
run: pio run --environment heltec_wifi_lora_32_V3