Skip to content

Commit

Permalink
Port some changes from mathertel#35
Browse files Browse the repository at this point in the history
  • Loading branch information
peternewman authored Jan 26, 2022
1 parent b4c55ed commit fb012e3
Showing 1 changed file with 20 additions and 3 deletions.
23 changes: 20 additions & 3 deletions .github/workflows/arduino-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
verbose: true
fqbn: arduino:avr:uno
sketch-paths: |
- 'examples/RDMSerialRecv'
- examples
compile-leonardo:
needs: compile-uno
Expand All @@ -71,7 +71,7 @@ jobs:
verbose: true
fqbn: arduino:avr:leonardo
sketch-paths: |
- 'examples/RDMSerialRecv'
- examples
compile-mega:
needs: compile-uno
Expand All @@ -88,4 +88,21 @@ jobs:
verbose: true
fqbn: arduino:avr:mega
sketch-paths: |
- 'examples/RDMSerialRecv'
- examples
compile-nano:
needs: compile-uno
name: compile examples for nano
runs-on: ubuntu-latest
continue-on-error: true

steps:
- uses: actions/checkout@v2

- name: Compile for nano
uses: arduino/compile-sketches@v1
with:
verbose: true
fqbn: arduino:avr:nano
sketch-paths: |
- examples

0 comments on commit fb012e3

Please sign in to comment.