Skip to content

Fixes for standalone Attenuator, web UI (#405) #2092

Fixes for standalone Attenuator, web UI (#405)

Fixes for standalone Attenuator, web UI (#405) #2092

Workflow file for this run

name: compile-test
on:
- push
- pull_request
env:
# It's convenient to set variables for values used multiple times in the workflow
SKETCHES_REPORTS_PATH: sketches-reports
jobs:
compile-platformio:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@main
- uses: actions/setup-python@main
with:
python-version: '3.12'
- name: Install PlatformIO Core
run: pip install --upgrade platformio
- name: Compile ProtonPack Project
working-directory: source/ProtonPack
run: pio run
- name: Compile NeutronaWand Project
working-directory: source/NeutronaWand
run: pio run
- name: Compile SingleShot Project
working-directory: source/SingleShot
run: pio run
- name: Compile Attenuator for Nano
working-directory: source/AttenuatorNano
run: pio run
- name: Compile Attenuator for ESP32
working-directory: source/AttenuatorESP32
run: pio run