Skip to content

Commit 69bfb8f

Browse files
authored
Create arduino-lint.yml
1 parent 97a3b2c commit 69bfb8f

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/arduino-lint.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
on:
2+
push:
3+
branches:
4+
- master
5+
6+
concurrency:
7+
group: "Arduino Lint"
8+
cancel-in-progress: false
9+
10+
jobs:
11+
lint:
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- name: Checkout Repository
16+
uses: actions/checkout@v4
17+
18+
- name: Run Lint
19+
uses: arduino/arduino-lint-action@v2
20+
with:
21+
library-manager: update
22+
compliance: strict
23+
verbose: true

0 commit comments

Comments
 (0)