From e867ee0f056dbbc44184a45541d48a93e90a2fb2 Mon Sep 17 00:00:00 2001 From: Alexey Kopytko Date: Tue, 22 Jul 2025 17:53:29 +0900 Subject: [PATCH 1/2] Test on PHP 8.1-8.4 --- .github/workflows/actions.yml | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml index fe09c93..2e83b1b 100644 --- a/.github/workflows/actions.yml +++ b/.github/workflows/actions.yml @@ -8,7 +8,16 @@ jobs: runs-on: ubuntu-20.04 strategy: matrix: - php-version: ['7.0', '7.1', '7.2', '7.3', '7.4', '8.0'] + php-version: + - '7.0' + - '7.1' + - '7.2' + - '7.3' + - '7.4' + - '8.0' + - '8.1' + - '8.2' + - '8.3' steps: - uses: actions/checkout@v2 @@ -19,4 +28,4 @@ jobs: php-version: ${{ matrix.php-version }} - run: composer install --prefer-dist --no-progress --no-suggest - - run: ./test/run \ No newline at end of file + - run: ./test/run From 71e53311d8659f43e21d994f2ada6b68a42cc602 Mon Sep 17 00:00:00 2001 From: Alexey Kopytko Date: Tue, 22 Jul 2025 17:55:45 +0900 Subject: [PATCH 2/2] Update actions.yml --- .github/workflows/actions.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml index 2e83b1b..3b6f64b 100644 --- a/.github/workflows/actions.yml +++ b/.github/workflows/actions.yml @@ -27,5 +27,14 @@ jobs: with: php-version: ${{ matrix.php-version }} + - name: Cache dependencies + uses: actions/cache@v4 + with: + path: ~/.cache/composer + key: composer-${{ matrix.php-version }}-${{ hashFiles('composer.*') }} + restore-keys: | + composer-${{ matrix.php-version }}- + composer- + - run: composer install --prefer-dist --no-progress --no-suggest - run: ./test/run