Fixing spell check errors #50
Workflow file for this run
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
name: Check library.properties | |
on: | |
pull_request: | |
paths: | |
- ".github/workflows/check-library-properties.yml" | |
- "avr/libraries/**" | |
push: | |
paths: | |
- ".github/workflows/check-library-properties.yml" | |
- "avr/libraries/**" | |
# workflow_dispatch event allows the workflow to be triggered manually | |
# See: https://docs.github.com/en/actions/reference/events-that-trigger-workflows#workflow_dispatch | |
workflow_dispatch: | |
# repository_dispatch event allows the workflow to be triggered via the GitHub API | |
# See: https://docs.github.com/en/actions/reference/events-that-trigger-workflows#repository_dispatch | |
repository_dispatch: | |
jobs: | |
check-library-properties: | |
runs-on: ubuntu-latest | |
env: | |
ARDUINO_CI_SCRIPT_FOLDER_PATH: extras/ci/tools/arduino-ci-script | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Install arduino-ci-script | |
uses: per1234/install-arduino-ci-script-action@main | |
with: | |
installation-path: ${{ env.ARDUINO_CI_SCRIPT_FOLDER_PATH }} | |
- name: Check library.properties | |
run: | | |
source "${{ env.ARDUINO_CI_SCRIPT_FOLDER_PATH }}/arduino-ci-script.sh" | |
# https://github.com/per1234/arduino-ci-script#check_library_properties-searchpath-maximumsearchdepth | |
check_library_properties "${GITHUB_WORKSPACE}/avr/libraries" 1 |