From 0419a1d4e28e27d01c63ac225d25a7259d4029bb Mon Sep 17 00:00:00 2001 From: Matthias Hertel Date: Fri, 2 Aug 2024 17:28:37 +0200 Subject: [PATCH] github action -- compile for arduino:esp32:nano_nora --- .github/workflows/arduino-nano.yml | 38 ------------------------------ 1 file changed, 38 deletions(-) delete mode 100644 .github/workflows/arduino-nano.yml diff --git a/.github/workflows/arduino-nano.yml b/.github/workflows/arduino-nano.yml deleted file mode 100644 index a530065..0000000 --- a/.github/workflows/arduino-nano.yml +++ /dev/null @@ -1,38 +0,0 @@ -# This is a basic workflow to help you get started with Actions for Arduino library projects - -name: Arduino Library Checks - -# Controls when the action will run. -on: - # Triggers the workflow on push or pull request events but only for the develop branch - push: - branches: [develop,master] - pull_request: - branches: [develop,master] - - # Allows you to run this workflow manually from the Actions tab - workflow_dispatch: - -jobs: - - # These jobs are used to compile the examples fot the specific processor/board. - # see - compile-arduino-nano-eps32: - name: compile examples for Arduinop Nano ESP32 - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v4 - - # Compile Examples for UNO - - name: Compile examples on uno - uses: arduino/compile-sketches@v1 - with: - verbose: true - fqbn: arduino:esp32:nano_nora - sketch-paths: | - - 'examples/SimpleOneButton' - - 'examples/TwoButtons' - - 'examples/BlinkMachine' - - 'examples/InterruptOneButton' - - 'examples/SpecialInput'