summaryrefslogtreecommitdiffstats
path: root/.github/workflows
diff options
context:
space:
mode:
authorhamza221 <hamzamahjoubi221@gmail.com>2023-10-02 12:44:04 +0200
committerhamza221 <hamzamahjoubi221@gmail.com>2023-10-07 21:30:32 +0200
commit91d2cb83f5b64180a99d6c972f429fffb1b23eaa (patch)
treee9bc90acbf7d81a471b37ec8bfb6593445436481 /.github/workflows
parent26d9c6ee54318ec2f67160496859f5f19ccd9b12 (diff)
Add support for php8.3
Signed-off-by: hamza221 <hamzamahjoubi221@gmail.com>
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/lint-php.yml2
-rw-r--r--.github/workflows/phpunit.yml5
2 files changed, 5 insertions, 2 deletions
diff --git a/.github/workflows/lint-php.yml b/.github/workflows/lint-php.yml
index 8d7f63f8..a0081dc1 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.yml b/.github/workflows/phpunit.yml
index 4b7ada07..031b1c10 100644
--- a/.github/workflows/phpunit.yml
+++ b/.github/workflows/phpunit.yml
@@ -88,10 +88,13 @@ jobs:
# do not stop on another job's failure
fail-fast: false
matrix:
- php-versions: ['8.0', '8.1', '8.2']
+ php-versions: ['8.1', '8.2', '8.3']
databases: ['mysql']
server-versions: ['master']
include:
+ - php-versions: '8.0'
+ server-versions: 'master'
+ databases: 'mysql'
- php-versions: '7.4'
server-versions: stable25
databases: 'mysql'