feat: use new framework for GUI to improve flexibility and appearance #18
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: PlatformIO Build | |
on: [push] | |
jobs: | |
build: | |
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@v4 | |
with: | |
python-version: '3.9' | |
- name: Install PlatformIO Core | |
run: pip install --upgrade platformio | |
- name: Fetch Library Dependencies | |
run: pio pkg install | |
- name: Create Mock arduino_secrets.h File | |
run: echo -e "#define SECRET_SSID \"MOCK_SSID\"\n#define SECRET_PASS \"MOCK_PASS\"\n#define SERVER_IP \"127.0.0.1\"\n" > include/arduino_secrets.h | |
- name: Build PlatformIO Project | |
run: pio run |