From e043d0114cbe8dc35b9a4ed6f7d1f35490083fca Mon Sep 17 00:00:00 2001 From: Saade Date: Wed, 15 Feb 2023 11:13:30 -0300 Subject: [PATCH] Update GitHub Actions for Laravel 10 --- .github/workflows/ci.yml | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6b21de4..f14eb73 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,12 +3,22 @@ name: run-tests on: [push, pull_request] jobs: - test: + tests: runs-on: ubuntu-latest strategy: - fail-fast: true matrix: - laravel: [6, 8, 9] + php: ["7.3", "8.0", "8.1"] + laravel: ["^6.0", "^8.0", "^9.0", "^10.0"] + include: + - laravel: "^9.0" + testbench: "^7.0" + - laravel: "^10.0" + testbench: "^8.0" + exclude: + - laravel: "^10.0" + php: "8.0" + - laravel: "^9.0" + php: "7.3" name: Tests (PHPUnit) - L${{ matrix.laravel }} @@ -42,4 +52,4 @@ jobs: with: author_name: Samuel Ć tancl author_email: samuel.stancl@gmail.com - message: Fix code style (php-cs-fixer) + message: Fix code style (php-cs-fixer) \ No newline at end of file