From 765a168decff8c847c9b4f811f34007af94defb4 Mon Sep 17 00:00:00 2001 From: Quentin Fisch Date: Tue, 27 Feb 2024 14:00:39 +0100 Subject: [PATCH] Added arduino CI workflow --- .github/workflows/arduino.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/arduino.yml diff --git a/.github/workflows/arduino.yml b/.github/workflows/arduino.yml new file mode 100644 index 0000000..e1b1b18 --- /dev/null +++ b/.github/workflows/arduino.yml @@ -0,0 +1,23 @@ +name: Arduino Lib + +on: + pull_request: + branches: + - master + +jobs: + arduino-lint: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: arduino/arduino-lint-action@v1 + with: + library-manager: update + + arduino-ci: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: Arduino-CI/action@stable-1.x + env: + EXPECT_EXAMPLES: true