From 9824b64a512fe42ecbce7f06532882e42fd85cdc Mon Sep 17 00:00:00 2001 From: Jason2866 <24528715+Jason2866@users.noreply.github.com> Date: Mon, 4 May 2020 08:42:15 +0200 Subject: [PATCH] CI for ESP32 in a different process to see the failures for ESP8266 and ESP32 --- .github/workflows/CI_github_ESP32.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/CI_github_ESP32.yml diff --git a/.github/workflows/CI_github_ESP32.yml b/.github/workflows/CI_github_ESP32.yml new file mode 100644 index 000000000..aeeb0e9ce --- /dev/null +++ b/.github/workflows/CI_github_ESP32.yml @@ -0,0 +1,22 @@ +name: Tasmota ESP32 CI + +on: [push, pull_request] + +jobs: + tasmota32: + 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 -U platformio + platformio upgrade --dev + platformio update + - name: Run PlatformIO + run: | + cp platformio_override_sample.ini platformio_override.ini + platformio run -e tasmota32 +