Skip to content

Setup spell checker for localizable file #1

Setup spell checker for localizable file

Setup spell checker for localizable file #1

Workflow file for this run

name: Spellcheck
on:
push:
branches:
- master
pull_request:
paths:
- '.github/workflows/**'
- NextcloudTalk/en.lproj/Localizable.strings
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
spelling:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools
python -m pip install pyspelling
# Install any additional libraries required: additional plugins, documentation building libraries, etc.
- name: Install Aspell
run: |
sudo apt-get install aspell aspell-en
- name: Spell check
run: |
python -m pyspelling