Skip to content

Complete rewrite of the Webinterface #124

Complete rewrite of the Webinterface

Complete rewrite of the Webinterface #124

name: Build and test everything
on: [push, pull_request, workflow_call]
jobs:
build_and_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Cache pip
uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Cache PlatformIO
uses: actions/cache@v3
with:
path: ~/.platformio
key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }}
- name: Set up Python
uses: actions/setup-python@v2
- name: Install PlatformIO and html-minifier-terser
run: |
python -m pip install --upgrade pip
pip install --upgrade platformio
npm install html-minifier-terser -g
- name: Install library dependencies
run: pio lib -g install 1
- name: Run tests Owie
run: pio test -e native
- name: Build Owie
run: pio run -e d1_mini_lite_clone
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: firmware
path: .pio/build/d1_mini_lite_clone/firmware.bin