bacon-sci 0.16.2

Scientific computing in Rust
Documentation
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