Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
karolis1115 committed Feb 22, 2024
2 parents 7e67bda + 59e5b30 commit 647cef8
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
name: arduino-lint
on: [workflow_dispatch, push]
on: [workflow_dispatch, push, pull_request]
jobs:
arduino-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: arduino/[email protected]
- name: Checkout repository
uses: actions/checkout@v4

- name: Arduino lint
uses: arduino/[email protected]
with:
project-type: library
library-manager: update
Expand Down
14 changes: 14 additions & 0 deletions .github/workflows/spell-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Spell Check

on: [pull_request, push, workflow_dispatch]

jobs:
spell-check:
runs-on: ubuntu-latest

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

- name: Spell check
uses: codespell-project/actions-codespell@master
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ author=Karolis Juozapaitis <[email protected]>
maintainer=Karolis Juozapaitis <[email protected]>
license=MIT
sentence=An easy to use FTP client library for the Arduino ecosystem.
paragraph=Uses the WiFiClient library to download files from FTP servers that support Pasive mode (PASV). The library stores the received data in a user defined buffer.
paragraph=Uses the WiFiClient library to download files from FTP servers that support Passive mode (PASV). The library stores the received data in a user defined buffer.
category=Communication
url=https://github.com/karolis1115/FTPduino
architectures=*
Expand Down

0 comments on commit 647cef8

Please sign in to comment.