Skip to content

Commit 8aa9b6c

Browse files
Chore: Add Aspell installation step in CI workflow for Linux and macOS
1 parent 1544dca commit 8aa9b6c

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/run-tests.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,15 @@ jobs:
4848
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" "nesbot/carbon:${{ matrix.os == 'windows-latest' && '^^^' || '' }}${{ matrix.carbon }}" --no-interaction --no-update
4949
composer update --${{ matrix.stability }} --prefer-dist --no-interaction
5050
51+
- name: Install Aspell
52+
shell: bash
53+
run: |
54+
if [[ "$RUNNER_OS" == "Linux" ]]; then
55+
sudo apt-get update && sudo apt-get install -y aspell aspell-en
56+
elif [[ "$RUNNER_OS" == "macOS" ]]; then
57+
brew install aspell
58+
fi
59+
5160
- name: List Installed Dependencies
5261
run: composer show -D
5362

0 commit comments

Comments
 (0)