From f453cd73d9ea94911fbe043929d02826a0b98e60 Mon Sep 17 00:00:00 2001 From: Ishan Vyas Date: Wed, 3 Jan 2024 14:39:25 +0530 Subject: [PATCH 1/2] Run tests on PHP 8.3 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e0a2d31..a9f78e6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,7 +22,7 @@ jobs: strategy: fail-fast: false matrix: - php-versions: ['7.4', '8.0', '8.1', '8.2'] + php-versions: ['7.4', '8.0', '8.1', '8.2', '8.3'] db-type: [mysql] prefer-lowest: ['', 'prefer-lowest'] From 1e33ce08a13f3f73d6cf87aa7a540e11d84f45fc Mon Sep 17 00:00:00 2001 From: Ishan Vyas Date: Wed, 3 Jan 2024 14:41:26 +0530 Subject: [PATCH 2/2] Run CI on all pull requests --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a9f78e6..cc05456 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,7 +4,7 @@ on: push: branches: [ "master" ] pull_request: - branches: [ "master" ] + branches: [ "*" ] schedule: - cron: "0 0 * * 0" # Runs at 00:00 UTC on Sun.