Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/roundcube/roundcubemail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksander Machniak <alec@alec.pl>2021-08-29 18:25:30 +0300
committerAleksander Machniak <alec@alec.pl>2021-08-29 18:25:30 +0300
commit00521bf61786d0df38d63b3d26b9928d6830d74f (patch)
tree005b9d1d1b83a80f935334c29af7ab5616cca317 /.github
parent90f64aa323b529b83685b1a3957ee4c5e1877592 (diff)
Switch spellcheck tests from googie to pspell
Diffstat (limited to '.github')
-rw-r--r--.github/config-test.inc.php2
-rw-r--r--.github/workflows/browser_tests.yml2
-rw-r--r--.github/workflows/tests.yml4
3 files changed, 5 insertions, 3 deletions
diff --git a/.github/config-test.inc.php b/.github/config-test.inc.php
index 406fb3614..c2270b464 100644
--- a/.github/config-test.inc.php
+++ b/.github/config-test.inc.php
@@ -28,3 +28,5 @@ $config['plugins'] = [
];
$config['archive_mbox'] = 'Archive';
+
+$config['spellcheck_engine'] = 'pspell';
diff --git a/.github/workflows/browser_tests.yml b/.github/workflows/browser_tests.yml
index f84b6d557..f43cd476a 100644
--- a/.github/workflows/browser_tests.yml
+++ b/.github/workflows/browser_tests.yml
@@ -22,7 +22,7 @@ jobs:
uses: shivammathur/setup-php@v2
with:
php-version: 8.0
- extensions: dom, curl, fileinfo, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, gd, ldap, intl
+ extensions: dom, curl, fileinfo, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, gd, ldap, intl, pspell
tools: composer:v2
coverage: none
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml
index 7542e4ee9..817812f52 100644
--- a/.github/workflows/tests.yml
+++ b/.github/workflows/tests.yml
@@ -24,7 +24,7 @@ jobs:
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
- extensions: dom, curl, fileinfo, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, gd, ldap, intl
+ extensions: dom, curl, fileinfo, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, gd, ldap, intl, pspell
tools: composer:v2
coverage: none
@@ -47,7 +47,7 @@ jobs:
run: cp .github/config-test.inc.php config/config-test.inc.php
- name: Execute tests
- run: vendor/bin/phpunit -c tests/phpunit.xml --exclude-group=external
+ run: vendor/bin/phpunit -c tests/phpunit.xml
- name: Upload artifacts
uses: actions/upload-artifact@master