From 13f8d33e7a693c6b67564870ec12a61828b107d1 Mon Sep 17 00:00:00 2001 From: Proddy Date: Thu, 29 Oct 2020 20:36:21 +0100 Subject: [PATCH] Delete EMS-ESP_CI.yml --- .github/workflows/EMS-ESP_CI.yml | 33 -------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 .github/workflows/EMS-ESP_CI.yml diff --git a/.github/workflows/EMS-ESP_CI.yml b/.github/workflows/EMS-ESP_CI.yml deleted file mode 100644 index a163354e2..000000000 --- a/.github/workflows/EMS-ESP_CI.yml +++ /dev/null @@ -1,33 +0,0 @@ -name: EMS-ESP CI - -# Controls when the action will run. Triggers the workflow on push or pull request -# events but only for the master branch -#on: -# push: -# branches: [ main ] -# pull_request: -# branches: [ main ] - -on: - pull_request: - -jobs: - emsesp: - 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 upgrade - platformio update - - name: Run PlatformIO - run: | - platformio run - - -