From 0c8ae2ef83a60743b341f57e4c23e48ee712eee5 Mon Sep 17 00:00:00 2001 From: Shift Date: Sat, 21 Feb 2026 05:28:18 +0000 Subject: [PATCH] Update GitHub Actions for Laravel 13 --- .github/workflows/tests.yml | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index ab56ab9..3df1f59 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -1,22 +1,17 @@ name: Tests + on: pull_request + jobs: phpunit: name: PHP ${{ matrix.php }} + runs-on: ubuntu-latest + strategy: matrix: - php: - - "5.3" - - "5.4" - - "5.5" - - "5.6" - - "7.0" - - "7.1" - - "7.2" - - "7.3" - - "7.4" - - "8.0" + php: ['5.3', '5.4', '5.5', '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.3', '8.4', '8.5'] + steps: - name: Checkout uses: actions/checkout@v2