Publish Zenodo presentation overhaul for Arduino Programs Guide v1.0.2 #9
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Sketch compilation | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| compile-uno: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: arduino/compile-sketches@v1 | |
| with: | |
| fqbn: arduino:avr:uno | |
| libraries: "[]" | |
| sketch-paths: | | |
| - exercises | |
| - extras | |
| enable-warnings-report: true | |
| offline-package: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: actions/setup-python@v7 | |
| with: | |
| python-version: "3.14" | |
| - run: python tools/build_release.py | |
| - uses: actions/upload-artifact@v7 | |
| with: | |
| name: Arduino-Programs-Guide | |
| path: dist/*.zip |