From 4e4db31fd38b2bb98d777114d7cab7b9453c69f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Tamarelle?= Date: Tue, 16 Jul 2024 17:25:48 +0200 Subject: [PATCH] Run tests on new PHP versions (#20) --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cf494a4..f623a60 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,12 +8,14 @@ jobs: strategy: fail-fast: false matrix: - php: ['7.4', '8.0', '8.1'] + php: ['7.4', '8.0', '8.1', '8.2', '8.3'] strategy: ['default'] include: # Minimum supported dependencies with the oldest PHP version - php: '7.4' strategy: 'lowest' + - php: '8.1' + strategy: 'lowest' steps: - name: Checkout