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>2022-01-03 15:06:27 +0300
committerWilliam Desportes <williamdes@wdes.fr>2022-01-03 15:06:27 +0300
commit666f0d6a274919e7bfe2c6fa19896b94b5a09fe1 (patch)
tree2d3905b6461dab9f333d4b28f9f2fd7a03663f69 /.github/workflows
parente4dfea9a45ef0efcdc7a7c5ed5be359a419b47ee (diff)
parent58acfdb43b7419e0b6001ebcbea53649c29af758 (diff)
Merge branch 'QA_5_1'
Signed-off-by: William Desportes <williamdes@wdes.fr>
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/tests.yml7
1 files changed, 4 insertions, 3 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml
index c0409eaea4..df79eaa7f1 100644
--- a/.github/workflows/tests.yml
+++ b/.github/workflows/tests.yml
@@ -34,6 +34,7 @@ jobs:
# musl-locales and musl-locales-lang are needed to run some locale specific tests
# gettext is needed to run generate-mo
# git is needed to work around a version detection issue with composer, see: https://github.com/Roave/SecurityAdvisories/issues/76
+ # ctype for psalm
run: |
printf "set -exu && \
export V='%s' && \
@@ -64,16 +65,16 @@ jobs:
continue-on-error: ${{ matrix.experimental }}
strategy:
matrix:
- php-version: ["7.2", "7.3", "7.4", "8.0"]
+ php-version: ["7.2", "7.3", "7.4", "8.0", "8.1"]
experimental: [false]
os: [ubuntu-latest]
phpunit-options: ['--testsuite unit']
include:
- - php-version: '8.1'
+ - php-version: 'nightly'
experimental: true
os: ubuntu-latest
phpunit-options: '--configuration test/phpunit-php-nightly.xml'
- composer-options: '--ignore-platform-req=php'
+ composer-options: '--ignore-platform-req=php+'
steps:
- name: Checkout code
uses: actions/checkout@v2