Skip to content

Feature/add_yml

Feature/add_yml #43

Workflow file for this run

name: Spell Check
on:
push:
branches:
- main
pull_request:
jobs:
spellcheck:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install codespell
run: |
sudo apt-get install -y codespell
- name: Run spell checker
run: |
# Ignore common programming terms like "function", "init", odd strings associated with JNB, etc.
codespell --ignore-words-list "function,init,def,ndarray,PyPI,env" --skip="./demo/step2_specify_sensor_locations.ipynb" --skip="./.github/workflows/spellcheck.yml" .