From d5d559ff61efb704ede4bae7ce27910540774634 Mon Sep 17 00:00:00 2001 From: Kijin Sung Date: Sun, 30 Oct 2022 18:28:28 +0900 Subject: [PATCH] Add PHP 8.1 and remove PHP 7.0 from unit test matrix MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PHP 7.0은 유닛 테스트 환경과 더이상 호환되지 않으므로 제거하고, 그 대신 PHP 8.1 테스트를 추가함. --- .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 80122b71b..b101dc2f9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,7 +6,7 @@ jobs: strategy: fail-fast: false matrix: - php: [ '7.0', '7.1', '7.2', '7.3', '7.4', '8.0' ] + php: [ '7.1', '7.2', '7.3', '7.4', '8.0', '8.1' ] name: PHP ${{ matrix.php }} steps: