diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..beecef4 --- /dev/null +++ b/.github/workflows/main.yml @@ -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"