-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding CI with testing to compile the code
- Loading branch information
1 parent
6d4eb12
commit e660dbe
Showing
1 changed file
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: Compile Sketch | ||
|
||
on: | ||
- push | ||
- pull_request | ||
|
||
jobs: | ||
compile-sketch: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Compile | ||
uses: arduino/compile-sketches@main | ||
with: | ||
platforms: | | ||
- source-url: "https://github.com/SpenceKonde/ATTinyCore/archive/1.5.2.zip" | ||
name: "ATTinyCore:avr" | ||
source-path: "./avr/" | ||
- name: "arduino:avr" | ||
sketch-paths: | | ||
- ./ | ||
fqbn: "ATTinyCore:avr:attinyx5micr" | ||
libraries: | | ||
- name: "Adafruit NeoPixel" |