Clean up debug print when scanning for network #24
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: 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 |