summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorGreg Roach <greg@subaqua.co.uk>2023-10-18 20:14:18 +0100
committerGreg Roach <greg@subaqua.co.uk>2023-10-18 20:14:51 +0100
commit7c7db574d0bdf9952c8ec99186bddc01aa06fd48 (patch)
tree55ad32f8fc0aabcc5ae3b3045d625356738dbc10 /.github
parente16d67d8e63b417c18f70f49fcc0145838c6b66e (diff)
downloadwebtrees-7c7db574d0bdf9952c8ec99186bddc01aa06fd48.tar.gz
webtrees-7c7db574d0bdf9952c8ec99186bddc01aa06fd48.tar.bz2
webtrees-7c7db574d0bdf9952c8ec99186bddc01aa06fd48.zip
Add PHP 8.4 to the continuous integration tests
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/phpcs.yaml4
-rw-r--r--.github/workflows/phpunit.yaml2
2 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/phpcs.yaml b/.github/workflows/phpcs.yaml
index e7d5212c69..9528b9b9f0 100644
--- a/.github/workflows/phpcs.yaml
+++ b/.github/workflows/phpcs.yaml
@@ -11,14 +11,14 @@ jobs:
strategy:
matrix:
operating-system: ['ubuntu-latest']
- php-version: ['8.1', '8.2', '8.3']
+ php-version: ['8.1', '8.2', '8.3', '8.4']
steps:
- uses: shivammathur/setup-php@master
with:
php-version: ${{ matrix.php-version }}
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
- run: composer validate
diff --git a/.github/workflows/phpunit.yaml b/.github/workflows/phpunit.yaml
index 3f9d2af28e..c6e1f44756 100644
--- a/.github/workflows/phpunit.yaml
+++ b/.github/workflows/phpunit.yaml
@@ -11,7 +11,7 @@ jobs:
strategy:
matrix:
operating-system: [ubuntu-latest]
- php-version: ['8.1', '8.2', '8.3']
+ php-version: ['8.1', '8.2', '8.3', '8.4']
steps:
- uses: shivammathur/setup-php@master