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:
authorWilliam Desportes <williamdes@wdes.fr>2021-03-22 00:17:38 +0300
committerWilliam Desportes <williamdes@wdes.fr>2021-03-22 00:19:26 +0300
commit0c8d01b5cdf03e4cf009fa4c6f18d4622a2d35db (patch)
tree2ced593012aa77179acba7965da873b135595aaa /.github
parent7359d45b6ef35a5ba95712d19baa1911065ed159 (diff)
parentd05828e4cdd91001ca192f641db4e511dbbabafc (diff)
Merge branch 'QA_5_1'
Signed-off-by: William Desportes <williamdes@wdes.fr>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/tests.yml6
1 files changed, 5 insertions, 1 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml
index 747438b632..209dc32e71 100644
--- a/.github/workflows/tests.yml
+++ b/.github/workflows/tests.yml
@@ -13,10 +13,14 @@ jobs:
name: Test on php ${{ matrix.php-version }} and ${{ matrix.os }}
if: "!contains(github.event.head_commit.message, '[ci skip]')"
runs-on: ${{ matrix.os }}
+ continue-on-error: ${{ matrix.experimental }}
strategy:
matrix:
php-version: ["7.2", "7.3", "7.4", "8.0"]
+ experimental: [false]
os: [ubuntu-latest]
+ include:
+ - { php-version: '8.1', composer-options: '--ignore-platform-req=php', experimental: true, os: ubuntu-latest }
steps:
- uses: actions/checkout@v2
- name: Install gettext
@@ -35,7 +39,7 @@ jobs:
path: ~/.composer/cache/
key: composer-cache
- name: Install dependencies
- run: composer install --no-interaction
+ run: composer install --no-interaction ${{ matrix.composer-options }}
- name: Run php tests
run: composer run phpunit -- --exclude-group selenium
- name: Send coverage