Skip to content

new version of gwpy #164

new version of gwpy

new version of gwpy #164

Workflow file for this run

name: Spelling check
on:
push:
branches: "*"
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.9]
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: |
python -m pip install -U pip
python -m pip install -U jupyter codespell
- name: Clean all notebooks
run: |
for file in Tutorials/Day_*/*ipynb; do echo $file; jupyter nbconvert --ClearOutputPreprocessor.enabled=True --inplace $file; done
- name: Check spelling
run: |
codespell . --ignore-regex "\b[a-zA-Z]{2,3}\b" -I .dictionary.txt --skip="./.git/*"