Skip to content
This repository was archived by the owner on Jul 4, 2023. It is now read-only.

Commit 6fb37e4

Browse files
authored
Merge pull request #3 from raisedevs/arduino-lint-action
Enable arduino-lint-action
2 parents d38b83b + b062170 commit 6fb37e4

File tree

5 files changed

+13
-7
lines changed

5 files changed

+13
-7
lines changed

.github/workflows/build.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,12 @@ jobs:
2323
2424
echo "filename=RaiseDev-${VERSION}.tar.gz" >> "$GITHUB_OUTPUT"
2525
26+
- uses: arduino/arduino-lint-action@v1
27+
with:
28+
compliance: strict
29+
# Enable once accepted into library.
30+
# library-manager: update
31+
2632
- uses: actions/cache@v3
2733
with:
2834
path: |
@@ -38,7 +44,7 @@ jobs:
3844
run: pip install --upgrade platformio
3945

4046
- name: Build RaiseDev library
41-
run: pio ci --project-conf=platformio.ini --lib=. examples/main.cpp
47+
run: pio ci --project-conf=platformio.ini --lib=. examples/Basic
4248

4349
- name: Package RaiseDev PlatformIO library
4450
run: pio pkg pack --output="${{ steps.version.outputs.filename }}"
File renamed without changes.

library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
},
1111
"repository": {
1212
"type": "git",
13-
"url": "https://github.com/raisedevs/raise-dev-library.git"
13+
"url": "https://github.com/raisedevs/raise-dev-library"
1414
},
1515
"homepage": "https://raise.dev",
1616
"frameworks": "arduino",

library.properties

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
name=RaiseDev
22
version=0.0.3
3-
author=raise.dev
4-
license=MIT
3+
author=Mike McQuaid <[email protected]>
54
maintainer=Mike McQuaid <[email protected]>
65
sentence=Raise.dev library for auto-updating from the Raise.dev Console.
7-
paragraph=A C++ library providing auto-updates from the Raise.dev Console for the ESP8266 and ESP32.
6+
paragraph=Currently supports ESP8266 and ESP32.
87
category=Communication
9-
url=https://raise.dev
10-
architectures=*
8+
license=MIT
9+
url=https://github.com/raisedevs/raise-dev-library
10+
architectures=esp32, esp8266
1111
includes=RaiseDev.h
File renamed without changes.

0 commit comments

Comments
 (0)