diff --git a/.github/workflows /espidf-compile.yml b/.github/workflows /espidf-compile.yml deleted file mode 100644 index d64dceb..0000000 --- a/.github/workflows /espidf-compile.yml +++ /dev/null @@ -1,43 +0,0 @@ -name: esp-idf-ci-action - -on: - pull_request: - paths: - - "main/**" - - "components/**" - - push: - paths: - - "main/**" - - "components/**" - - workflow_dispatch: - repository_dispatch: - -jobs: - build: - strategy: - fail-fast: false - matrix: - idf_ver: - - release-v5.0 - - release-v5.1 - - release-v5.2 - - release-v5.3 - idf_target: - - esp32 - - esp32s2 - - esp32c3 - - esp32s3 - runs-on: ubuntu-latest - steps: - - name: Checkout repo - uses: actions/checkout@v4 - with: - submodules: 'recursive' - - name: Build Application with ESP-IDF - uses: espressif/esp-idf-ci-action@v1 - with: - esp_idf_version: ${{ matrix.idf_ver }} - target: ${{ matrix.idf_target }} - path: '.'