Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
sdepassio committed Dec 21, 2023
1 parent 2708fdc commit 455dc1b
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/spellchecker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,18 +28,23 @@ jobs:
plugins:
- added|modified: src/**
- name: Install Libraries
- 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
id: run_check
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: |
sudo apt-get install -y hunspell aspell spell ispell
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)
Expand Down

0 comments on commit 455dc1b

Please sign in to comment.