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

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaurício Meneghini Fauth <mauricio@fauth.dev>2021-06-10 18:57:07 +0300
committerMaurício Meneghini Fauth <mauricio@fauth.dev>2021-06-11 16:10:11 +0300
commit23d4b4e30b1b33673dfe22cae6f9e652a891fe82 (patch)
tree4b281fb90597cd048bf89aa7afefbc57b1c54a15 /.github/workflows
parentabc21e640ebaa80151dcf9ab17924490a8395fd3 (diff)
Do not convert errors to exceptions for PHP 8.1 tests
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/tests.yml9
1 files changed, 7 insertions, 2 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml
index d40e6149c8..f2a3a44bb8 100644
--- a/.github/workflows/tests.yml
+++ b/.github/workflows/tests.yml
@@ -67,8 +67,13 @@ jobs:
php-version: ["7.2", "7.3", "7.4", "8.0"]
experimental: [false]
os: [ubuntu-latest]
+ phpunit-options: ['--exclude-group selenium']
include:
- - { php-version: '8.1', composer-options: '--ignore-platform-req=php', experimental: true, os: ubuntu-latest }
+ - php-version: '8.1'
+ experimental: true
+ os: ubuntu-latest
+ phpunit-options: '--configuration test/phpunit-php-nightly.xml'
+ composer-options: '--ignore-platform-req=php'
steps:
- uses: actions/checkout@v2
- name: Install gettext
@@ -98,7 +103,7 @@ jobs:
- name: Install dependencies
run: composer install --no-interaction ${{ matrix.composer-options }}
- name: Run php tests
- run: composer run phpunit -- --exclude-group selenium
+ run: composer run phpunit -- ${{ matrix.phpunit-options }}
- name: Send coverage
uses: codecov/codecov-action@v1
with: