diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 0257c7e..0b1a971 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -2,19 +2,22 @@ name: run-tests on: push: - branches: [main] + branches: + - main pull_request: - branches: [main] + branches: + - main jobs: test: runs-on: ${{ matrix.os }} + strategy: fail-fast: true matrix: os: [ubuntu-latest, windows-latest] php: [8.2, 8.1, 8.0] - laravel: [10.*, 9.*, 8.*] + laravel: ['8.*', '9.*', '10.*', '11.*'] stability: [prefer-stable] include: - laravel: 10.* @@ -23,11 +26,17 @@ jobs: testbench: 7.* - laravel: 8.* testbench: 6.23 + - laravel: 11.* + testbench: 9.* exclude: - laravel: 10.* php: 8.0 - laravel: 8.* php: 8.2 + - laravel: 11.* + php: 8.1 + - laravel: 11.* + php: 8.0 name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}