LoRa_APRS_iGate/.github/workflows/commit.yml
richonguzman 666c57738b update6-1
2024-05-24 17:02:07 -04:00

35 lines
881 B
YAML

name: Commit Test Build
on:
push:
branches:
- '*'
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
target:
- name: ttgo-lora32-v21
chip: esp32
- name: heltec_wireless_stick
chip: esp32s3
- name: heltec_ht-ct62
chip: esp32c3
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.9"
- name: Install PlatformIO Core
run: pip install --upgrade platformio
- name: Build target
run: pio run -e ${{ matrix.target.name }}
- name: Build FS
run: pio run --target buildfs -e ${{ matrix.target.name }}