We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1544dca commit 8aa9b6cCopy full SHA for 8aa9b6c
.github/workflows/run-tests.yml
@@ -48,6 +48,15 @@ jobs:
48
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" "nesbot/carbon:${{ matrix.os == 'windows-latest' && '^^^' || '' }}${{ matrix.carbon }}" --no-interaction --no-update
49
composer update --${{ matrix.stability }} --prefer-dist --no-interaction
50
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
+
60
- name: List Installed Dependencies
61
run: composer show -D
62
0 commit comments