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'