This repository has been archived by the owner on Jan 20, 2025. It is now read-only.
Prepare move to https://github.com/ESP32Async/ESPAsyncTCP (#196) #25
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 TCP CI | |
on: | |
workflow_dispatch: | |
push: | |
pull_request: | |
jobs: | |
build-pio: | |
name: PlatformIO on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macOS-latest] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cache/pip | |
~/.platformio/.cache | |
key: ${{ runner.os }}-pio | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.11' | |
- name: Install PlatformIO Core | |
run: pip install --upgrade platformio | |
- name: Build Tests | |
run: bash ./.github/scripts/on-push.sh 1 1 |