From 1226722edc24dba8a71a0f081a4af5ef048072d8 Mon Sep 17 00:00:00 2001 From: Hasnat Hoque Date: Wed, 27 Sep 2023 11:37:40 +0100 Subject: [PATCH] feat(odp-191): add php 8.2 to ci matrix --- .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 47c1c0a..7c36865 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,12 +8,14 @@ jobs: strategy: fail-fast: true matrix: - php: [ 7.4, 8.1 ] + php: [ 7.4, 8.1, 8.2 ] include: - php: 7.4 laravel: 6.20 - php: 8.1 laravel: 10.14 + - php: 8.2 + laravel: 10.14 name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} steps: