From f79b00cce0d31c7e5519a871b27d803fdb30fdfd Mon Sep 17 00:00:00 2001 From: Gabor Kiss-Vamosi Date: Thu, 20 Jan 2022 13:20:42 +0100 Subject: [PATCH] ci: add arduino linter action --- .github/workflows/arduino.yml | 12 ++++++++++++ 1 file changed, 12 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 000000000..0e2e75e72 --- /dev/null +++ b/.github/workflows/arduino.yml @@ -0,0 +1,12 @@ +name: Arduino Lint +on: + push: + branches: [ master, release/v8.* ] + pull_request: + branches: [ master, release/v8.* ] +jobs: + lint: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: arduino/arduino-lint-action@v1