Skip to content

Commit

Permalink
up
Browse files Browse the repository at this point in the history
  • Loading branch information
rap2hpoutre committed Mar 20, 2024
1 parent 7a8c390 commit 4d2b829
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 16 deletions.
26 changes: 11 additions & 15 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,21 +9,17 @@ jobs:
strategy:
fail-fast: true
matrix:
php: ["7.2", "7.3", "7.4", "8.0", "8.1", "8.2", "8.3"]
php: ["7.2", "7.4", "8.0", "8.1", "8.2", "8.3"]
laravel: ["^6.0", "^7.0", "^8.0", "^9.0", "^10.0", "^11.0"]
exclude:
- php: "8.0"
laravel: "^10.0"
- php: "7.4"
laravel: "^10.0"
- php: "7.3"
laravel: "^10.0"
- php: "7.2"
laravel: "^10.0"
- php: "7.4"
laravel: "^9.0"
- php: "7.3"
laravel: "^9.0"
- php: "7.2"
laravel: "^9.0"
- php: "8.3"
Expand All @@ -44,16 +40,16 @@ jobs:
laravel: "^6.0"
- php: "8.1"
laravel: "^6.0"
- laravel: "11.0"
php: "7.2"
- laravel: "11.0"
php: "7.3"
- laravel: "11.0"
php: "7.4"
- laravel: "11.0"
php: "8.0"
- laravel: "11.0"
php: "8.1"
- php: "7.2"
laravel: "^11.0"
- php: "7.4"
laravel: "^11.0"
- php: "8.0"
laravel: "^11.0"
- php: "8.1"
laravel: "^11.0"
- php: "8.2"
laravel: "^11.0"
name: "PHP${{ matrix.php }} - Laravel${{ matrix.laravel }}"

runs-on: "ubuntu-latest"
Expand Down
2 changes: 1 addition & 1 deletion phpunit.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit colors="true" bootstrap="./vendor/autoload.php" convertNoticesToExceptions="true" convertWarningsToExceptions="false" stopOnError="false" stopOnFailure="false" stopOnIncomplete="false" stopOnSkipped="false">
<phpunit colors="true" bootstrap="./vendor/autoload.php" convertNoticesToExceptions="false" convertWarningsToExceptions="false" stopOnError="false" stopOnFailure="false" stopOnIncomplete="false" stopOnSkipped="false">
<testsuites>
<testsuite name="all">
<directory suffix="Test.php">tests/</directory>
Expand Down

0 comments on commit 4d2b829

Please sign in to comment.