Fixes for standalone Attenuator, web UI (#405) #2092
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |