Skip to content

Spelling corrections to DAISS OPM beamforming #333

Spelling corrections to DAISS OPM beamforming

Spelling corrections to DAISS OPM beamforming #333

Workflow file for this run

name: Spelling
on:
push:
branches:
- main
release:
types: [published]
pull_request:
workflow_dispatch:
jobs:
spell:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v1
with:
python-version: '3.7'
architecture: 'x64'
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip setuptools
python3 -m pip install -r requirements.txt
- name: Install Aspell
run: |
sudo apt-get install aspell aspell-en
- name: Install Hunspell
run: |
sudo apt-get install hunspell hunspell-en-gb
- name: codespell
run: |
codespell docs
- name: pyspelling
run: |
pyspelling || true