Skip to content

Commit

Permalink
Add Arduino Lint Github Action
Browse files Browse the repository at this point in the history
  • Loading branch information
latchdevel committed Nov 17, 2024
1 parent de2b0d1 commit a7f15af
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/ArduinoLint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Check Arduino

# See: https://docs.github.com/en/free-pro-team@latest/actions/reference/events-that-trigger-workflows
on:
push:
pull_request:
schedule:
- cron: '0 0 1 * *'
workflow_dispatch:
repository_dispatch:

jobs:
lint:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Arduino Lint
uses: arduino/arduino-lint-action@v2
with:
compliance: strict
library-manager: update
project-type: library

0 comments on commit a7f15af

Please sign in to comment.