[DRAFT] Update FullyFeatured-ESP32.ino for arduino-esp32-3.0 branch #47
Workflow file for this run
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 with Platformio | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Set up Python | |
uses: actions/setup-python@v1 | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install platformio | |
- name: Add libraries | |
run: | | |
platformio lib -g install AsyncTCP | |
platformio lib -g install ESPAsyncTCP | |
- name: Getting ready | |
run: | | |
chmod +x ./scripts/CI/build_examples_pio.sh | |
- name: Build examples | |
run: | | |
./scripts/CI/build_examples_pio.sh |