Skip to content

Updated IVP to handle dynamically sized vectors #33

Updated IVP to handle dynamically sized vectors

Updated IVP to handle dynamically sized vectors #33

Workflow file for this run

name: Spellcheck
on:
pull_request:
push:
branches: [master]
jobs:
spell-check:
name: Check spelling in docs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: 3.7
- name: Install Dependencies
run: |
python -m pip install --upgrade pip setuptools
python -m pip install pyspelling
- name: Install aspell
run: |
sudo apt-get update
sudo apt-get install -y aspell aspell-en
- name: Spellcheck
run: python -m pyspelling -c .spellcheck.yml