This repository has been archived by the owner on Jan 20, 2025. It is now read-only.
Add missing include for Arduino 3.0.0 #167
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: ESP Async Web Server CI | |
on: | |
push: | |
branches: | |
- master | |
- release/* | |
pull_request: | |
jobs: | |
build-arduino: | |
name: Arduino for ${{ matrix.board }} on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macOS-latest] | |
board: [esp32, esp8266] | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Build Tests | |
run: bash ./.github/scripts/on-push.sh ${{ matrix.board }} 0 1 | |
# build-pio: | |
# name: PlatformIO for ${{ matrix.board }} on ${{ matrix.os }} | |
# runs-on: ${{ matrix.os }} | |
# strategy: | |
# matrix: | |
# os: [ubuntu-latest, windows-latest, macOS-latest] | |
# board: [esp32, esp8266] | |
# steps: | |
# - uses: actions/checkout@v1 | |
# - name: Build Tests | |
# run: bash ./.github/scripts/on-push.sh ${{ matrix.board }} 1 1 |