diff --git a/.github/workflows/main.yml b/.github/workflows/arduino-lint.yml similarity index 50% rename from .github/workflows/main.yml rename to .github/workflows/arduino-lint.yml index 7edbd81..e1fec69 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/arduino-lint.yml @@ -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/arduino-lint-action@v1.0.2 + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Arduino lint + uses: arduino/arduino-lint-action@v1.0.2 with: project-type: library library-manager: update diff --git a/.github/workflows/spell-check.yml b/.github/workflows/spell-check.yml new file mode 100644 index 0000000..f8859d4 --- /dev/null +++ b/.github/workflows/spell-check.yml @@ -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 diff --git a/library.properties b/library.properties index bda6a06..2816f90 100644 --- a/library.properties +++ b/library.properties @@ -4,7 +4,7 @@ author=Karolis Juozapaitis maintainer=Karolis Juozapaitis 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=*