From 64610fa6a371ea9ca3f3a5af60fd85c46e27aca1 Mon Sep 17 00:00:00 2001 From: Will Barber Date: Fri, 30 Aug 2024 21:25:02 +0100 Subject: [PATCH] Add CI --- .github/workflows/compile.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/compile.yml diff --git a/.github/workflows/compile.yml b/.github/workflows/compile.yml new file mode 100644 index 0000000..e30b150 --- /dev/null +++ b/.github/workflows/compile.yml @@ -0,0 +1,13 @@ +on: + - push + - pull_request +jobs: + compile-sketch: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: arduino/compile-sketches@v1 + with: + fqbn: "arduino:avr:uno" + sketch-paths: | + - src \ No newline at end of file