Skip to content

[CTOR-179] Include orthograph/syntax checks in CI for MC documentation #13

[CTOR-179] Include orthograph/syntax checks in CI for MC documentation

[CTOR-179] Include orthograph/syntax checks in CI for MC documentation #13

Workflow file for this run

name: spell-checker
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
on:
workflow_dispatch:
pull_request:
paths:
- '.github/workflows/spellchecker.yml'
- 'src/**'
- '.github/scripts/pod_spell_check.t'
jobs:
pod-spell-check:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: dorny/paths-filter@v2
id: filter
with:
base: ${{ github.ref }}
list-files: shell
filters: |
plugins:
- added|modified: src/**
- name: Install CPAN Libraries
uses: shogo82148/actions-setup-perl@v1
with:
perl-version: '5.34'
install-modules-with: cpm
install-modules: Test::More Test::Spelling Pod::Wordlist
- name: Install librairies
continue-on-error: true
run: sudo apt-get install -y hunspell aspell spell ispell
shell: bash
- name: Run spell check
id: run_check
continue-on-error: true
run: |
for f in ${{ steps.filter.outputs.plugins_files }}; do
echo "perl .github/scripts/pod_spell_check.t $f"
output=$(perl .github/scripts/pod_spell_check.t $f)
done
shell: bash +e
- name: Check errors
if: steps.run_check.outcome != 'success'
run: exit 1