From c6ea9793de996ccaa8dc391a13f295658f23c384 Mon Sep 17 00:00:00 2001 From: Jay McPartland Date: Fri, 28 Mar 2025 16:55:16 +0000 Subject: [PATCH] Run tests against PHP 8.4 in CI --- .circleci/config.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index a747580..522de6a 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -66,6 +66,19 @@ jobs: command: | composer run all-checks-strict name: Run all checks + php_84_tests: + docker: + - image: cimg/php:8.4 + steps: + - checkout + - run: + command: | + composer install + name: Composer install + - run: + command: | + composer run all-checks-strict + name: Run all checks notify_slack: docker: - image: cimg/node:17.2.0 @@ -83,6 +96,7 @@ workflows: - php_81_tests - php_82_tests - php_83_tests + - php_84_tests run_notify_slack: jobs: - notify_slack: