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

github.com/nextcloud/contacts.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2022-03-01 17:17:30 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2022-03-01 17:17:30 +0300
commit031efecb1e424a928fe7b8622a11b4aa5aba7e23 (patch)
treeeb83ec0da059cd334420382e8fd69b89b03e9b95
parent213309832f6d0e5903983acc251b9e9917ab231e (diff)
Do not run server master tests on PHP7.3fix/ci-php73-server-master
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
-rw-r--r--.github/workflows/phpunit.yml5
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/phpunit.yml b/.github/workflows/phpunit.yml
index b21a74e4..98a546c6 100644
--- a/.github/workflows/phpunit.yml
+++ b/.github/workflows/phpunit.yml
@@ -78,9 +78,12 @@ jobs:
# do not stop on another job's failure
fail-fast: false
matrix:
- php-versions: ['7.3', '7.4', '8.0']
+ php-versions: ['7.4', '8.0']
databases: ['mysql']
server-versions: ['stable21', 'stable22', 'stable23', 'master']
+ include:
+ - php-versions: 7.4
+ server-versions: stable23
name: php${{ matrix.php-versions }}-${{ matrix.databases }}-${{ matrix.server-versions }}