Skip to content

Merge pull request #36 from pammyleong/main #80

Merge pull request #36 from pammyleong/main

Merge pull request #36 from pammyleong/main #80

Workflow file for this run

# This workflow runs spell_check test for Ameba Arduino SDK
name: Check word spell
on: [push, pull_request]
# workflow_dispatch:
jobs:
spell-check:
name: Run spell-check check
runs-on: ubuntu-latest
strategy:
matrix:
path:
- 'source'
steps:
- name: Checkout repository # and submodules
uses: actions/checkout@v4
# with:
# submodules: recursive
- name: Run spell-check for multi-floders
# uses: codespell-project/actions-codespell@master
uses: codespell-project/actions-codespell@v2
with:
skip: source/_download/Education/NTNU/Ameba_AIoT_mini82_Arduino_Teaching_Material_EngVer.pdf,source/_download/Education/NTNU/Ameba_AIoT_mini82_Arduino_Teaching_Material_JPVer.pdf,source/Education/NTNU.rst
ignore_words_list: ameba,datas
# ignore_words_file: .codespellignore
path: ${{ matrix.path }}