Skip to content

Commit a2327b4

Browse files
authored
Fix installing aspell in all test workflow runs (#9993)
1 parent 29adfbe commit a2327b4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/browser_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
6565

6666
- name: Install Aspell
67-
run: sudo apt-get -y install aspell aspell-en aspell-de
67+
run: sudo apt-get -y update && sudo apt-get -y install --no-install-recommends aspell aspell-en aspell-de
6868

6969
- name: Execute tests
7070
if: ${{ matrix.php != '8.5' }}

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
3636

3737
- name: Install Aspell/Hunspell
38-
run: sudo apt-get -y install aspell aspell-en aspell-de hunspell-en-us
38+
run: sudo apt-get -y update && sudo apt-get -y install --no-install-recommends aspell aspell-en aspell-de hunspell-en-us
3939

4040
- name: Execute tests
4141
if: ${{ matrix.php != '8.5' }}

0 commit comments

Comments
 (0)