Skip to content

Clean up debug print when scanning for network #24

Clean up debug print when scanning for network

Clean up debug print when scanning for network #24

name: Build PlatformIO project
on: [push, pull_request]
jobs:
build:
strategy:
matrix:
environment: [d1_mini, thorrax]
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 ${{ matrix.environment }}
run: pio run -e ${{ matrix.environment }}
- uses: actions/upload-artifact@v4
with:
name: ${{ matrix.environment }}.bin
path: .pio/build/${{ matrix.environment }}/firmware.bin