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