Skip to content

Commit 648b1f5

Browse files
committed
added github workflows (arduino-lint and arduino_ci)
1 parent 14739c9 commit 648b1f5

File tree

3 files changed

+40
-0
lines changed

3 files changed

+40
-0
lines changed

.arduino-ci.yaml

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
compile:
2+
platforms:
3+
- uno
4+
- due
5+
- zero
6+
- leonardo
7+
- m4
8+
- esp32
9+
#- esp8266
10+
- mega2560
11+
- nano_every

.github/workflows/arduino-lint.yaml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
name: arduino-lint
3+
4+
on: [push, pull_request]
5+
6+
jobs:
7+
lint:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v4
11+
# https://github.com/actions/checkout
12+
- uses: arduino/arduino-lint-action@v1
13+
# https://github.com/arduino/arduino-lint-action
14+
with:
15+
library-manager: update
16+
compliance: strict

.github/workflows/arduino_ci.yaml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
name: arduino_ci
3+
4+
on: [push, pull_request]
5+
6+
jobs:
7+
arduino_ci:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v4
11+
# https://github.com/actions/checkout
12+
- uses: Arduino-CI/[email protected]
13+
# https://github.com/marketplace/actions/arduino_ci

0 commit comments

Comments
 (0)