Skip to content

Commit

Permalink
Add CI
Browse files Browse the repository at this point in the history
Adding CI with testing to compile the code
  • Loading branch information
designer2k2 authored Nov 22, 2022
1 parent 6d4eb12 commit e660dbe
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/main.yml
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"

0 comments on commit e660dbe

Please sign in to comment.