From 4f011366993b5f1ab2fd79f052aba78cb9ea3bbf 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 | 26 ++++++++++++++++++++++++++ 1 file changed, 26 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..24281e4 --- /dev/null +++ b/.github/workflows/arduino.yml @@ -0,0 +1,26 @@ +name: Arduino Lib + +on: + pull_request: + branches: + - master + push: + 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