summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorGreg Roach <greg@subaqua.co.uk>2025-02-20 11:48:30 +0000
committerGreg Roach <greg@subaqua.co.uk>2025-02-20 11:48:30 +0000
commit17047e03d79bd7cf5c058f40559a18a0ae11d533 (patch)
treeb50b443b6a4b7f283553edd029e581712ab3dd97 /.github/workflows
parent6a4f8ffedc2dba6965743852b559a44e47318cbd (diff)
downloadwebtrees-17047e03d79bd7cf5c058f40559a18a0ae11d533.tar.gz
webtrees-17047e03d79bd7cf5c058f40559a18a0ae11d533.tar.bz2
webtrees-17047e03d79bd7cf5c058f40559a18a0ae11d533.zip
Test against PHP 8.5
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/phpcs.yaml2
-rw-r--r--.github/workflows/phpstan.yaml4
-rw-r--r--.github/workflows/phpunit.yaml2
3 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/phpcs.yaml b/.github/workflows/phpcs.yaml
index 430357d9df..1807676a1c 100644
--- a/.github/workflows/phpcs.yaml
+++ b/.github/workflows/phpcs.yaml
@@ -11,7 +11,7 @@ jobs:
strategy:
matrix:
operating-system: [ 'ubuntu-latest' ]
- php-version: [ '7.4', '8.0', '8.1', '8.2', '8.3', '8.4' ]
+ php-version: [ '7.4', '8.0', '8.1', '8.2', '8.3', '8.4', '8.5' ]
fail-fast: false
steps:
diff --git a/.github/workflows/phpstan.yaml b/.github/workflows/phpstan.yaml
index 34c8957211..5afbc197aa 100644
--- a/.github/workflows/phpstan.yaml
+++ b/.github/workflows/phpstan.yaml
@@ -11,11 +11,11 @@ jobs:
strategy:
matrix:
operating-system: [ 'ubuntu-latest' ]
- php-version: [ '7.4', '8.0', '8.1', '8.2', '8.3', '8.4' ]
+ php-version: [ '7.4', '8.0', '8.1', '8.2', '8.3', '8.4', '8.5' ]
fail-fast: false
steps:
- - uses: shivammathur/setup-php@v2
+ - uses: shivammathur/setup-php@master
with:
php-version: ${{ matrix.php-version }}
diff --git a/.github/workflows/phpunit.yaml b/.github/workflows/phpunit.yaml
index 708a8fa3eb..d4360f8a55 100644
--- a/.github/workflows/phpunit.yaml
+++ b/.github/workflows/phpunit.yaml
@@ -11,7 +11,7 @@ jobs:
strategy:
matrix:
operating-system: ['ubuntu-latest']
- php-version: ['7.4', '8.0', '8.1', '8.2', '8.3', '8.4' ]
+ php-version: ['7.4', '8.0', '8.1', '8.2', '8.3', '8.4', '8.5' ]
fail-fast: false
steps: