mirror of
https://github.com/Genaker/LoraSA.git
synced 2026-03-28 17:42:59 +01:00
* 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
23 lines
555 B
YAML
23 lines
555 B
YAML
name: Build Lilygo T3S3 SX1262
|
|
|
|
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 lilygo-T3S3-v1-2-sx1262
|