From 58d37b1db2cbe37c074d57819ff7c5a4f1636b32 Mon Sep 17 00:00:00 2001 From: xemlock Date: Wed, 1 Sep 2021 10:06:46 +0200 Subject: [PATCH] Add PHP 8.1 and 8.2 to test matrix --- .github/workflows/build.yml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4ce863c..013f48b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -10,7 +10,19 @@ jobs: fail-fast: false matrix: operating-system: ['ubuntu-latest'] - php-versions: ['8.0', '7.4', '7.3', '7.2', '7.1', '7.0', '5.6', '5.5', '5.4', '5.3'] + php-versions: + - 8.2 + - 8.1 + - 8.0 + - 7.4 + - 7.3 + - 7.2 + - 7.1 + - 7.0 + - 5.6 + - 5.5 + - 5.4 + - 5.3 steps: - name: Checkout