Skip to content

Commit

Permalink
Adding L10 support
Browse files Browse the repository at this point in the history
  • Loading branch information
luisdalmolin committed Oct 22, 2024
1 parent a15b7d4 commit 6f99edf
Showing 1 changed file with 34 additions and 3 deletions.
37 changes: 34 additions & 3 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,36 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [ 8.2, 8.3 ]
laravel: [ 11.* ]
php: [ 8.1, 8.2, 8.3 ]
laravel: [ 10.*, 11.* ]
include:
- php: 8.1
laravel: 10.*
pest: 2.*
testbench: 8.*
- php: 8.2
laravel: 10.*
pest: 2.*
testbench: 8.*
- php: 8.3
laravel: 10.*
pest: 2.*
testbench: 8.*
- php: 8.1
laravel: 11.*
pest: 3.*
testbench: 9.*
- php: 8.2
laravel: 11.*
pest: 3.*
testbench: 9.*
- php: 8.3
laravel: 11.*
pest: 3.*
testbench: 9.*
exclude:
- php: 8.1
laravel: 11.*

name: Paragon Tests - PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }}

Expand All @@ -37,7 +65,10 @@ jobs:

- name: Install dependencies
run: |
composer install --no-interaction --no-suggest --dev
composer require "laravel/framework:${{ matrix.laravel }}" --no-interaction --no-update
composer require "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update --dev
composer require "pestphp/pest:${{ matrix.pest }}" "pestphp/pest-plugin-laravel:${{ matrix.pest }}" --no-interaction --no-update --dev
composer update --prefer-dist --no-interaction --no-suggest --dev
composer dump
- name: Execute tests
Expand Down

0 comments on commit 6f99edf

Please sign in to comment.