-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This commit updates the GitHub Actions workflow file to include a lint job that runs on push and pull request events. The lint job uses the latest version of the Arduino lint action.
- Loading branch information
Showing
2 changed files
with
16 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,7 @@ | ||
- name: arduino/arduino-lint-action | ||
uses: arduino/[email protected] | ||
on: [push, pull_request] | ||
jobs: | ||
lint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: arduino/arduino-lint-action@v1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
name=PocketbaseArduino | ||
version=0.3.5 | ||
author=Jeo Carlo Lubao | ||
maintainer=Jeo Carlo Lubao | ||
sentence=Pocketbase Library for Arduino | ||
paragraph=[Create, Update and Auth In Progress] This library simplifies the process of communicating with Pocketbase. It hides the complexity of authentication and json parsing. | ||
category=Communication | ||
url=https://github.com/jeoooo/pocketbasearduino | ||
architectures=esp8266 |