summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2023-08-28 16:05:45 +0200
committerJoas Schilling <coding@schilljs.com>2023-08-30 09:23:15 +0200
commitac2c79b062883e6819dd42f56fff2d5c8e534504 (patch)
tree0a0ab977c949a65b3ab21fe5da85aab5fa7047f3 /.github
parentbacd6f3984fd16b1219714f1979598f5d11a126a (diff)
deps(PHP): Try execution against PHP 8.3 beta
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/lint-php.yml2
-rw-r--r--.github/workflows/phpunit-mysql.yml6
2 files changed, 6 insertions, 2 deletions
diff --git a/.github/workflows/lint-php.yml b/.github/workflows/lint-php.yml
index 8d7f63f84..a6d382309 100644
--- a/.github/workflows/lint-php.yml
+++ b/.github/workflows/lint-php.yml
@@ -25,7 +25,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
- php-versions: [ "8.0", "8.1", "8.2" ]
+ php-versions: [ "8.0", "8.1", "8.2", "8.3" ]
name: php-lint
diff --git a/.github/workflows/phpunit-mysql.yml b/.github/workflows/phpunit-mysql.yml
index 05e27e1ad..7e5fd4875 100644
--- a/.github/workflows/phpunit-mysql.yml
+++ b/.github/workflows/phpunit-mysql.yml
@@ -38,7 +38,7 @@ jobs:
strategy:
matrix:
- php-versions: ['8.0', '8.1', '8.2']
+ php-versions: ['8.0', '8.1', '8.2', '8.3']
server-versions: ['master']
services:
@@ -63,6 +63,10 @@ jobs:
repository: nextcloud/server
ref: ${{ matrix.server-versions }}
+ - name: Patch version check for nightly PHP
+ if: ${{ matrix.php-versions == '8.3' }}
+ run: echo "<?php" > lib/versioncheck.php
+
- name: Checkout app
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
with: