Skip to content

chore: Complete Redesign & Documentation Update #28

chore: Complete Redesign & Documentation Update

chore: Complete Redesign & Documentation Update #28

Workflow file for this run

name: PlatformIO CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Cache PlatformIO
uses: actions/cache@v4
with:
path: |
~/.cache/pip
~/.platformio
.pio
key: ${{ runner.os }}-pio-${{ hashFiles('**/platformio.ini') }}
restore-keys: |
${{ runner.os }}-pio-
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install PlatformIO
run: pip install --upgrade platformio
- name: Create Dummy secrets.h
run: cp display/secrets_example.h display/secrets.h
- name: Run PlatformIO Build
run: pio run