Skip to content

Commit 4d2b829

Browse files
committed
up
1 parent 7a8c390 commit 4d2b829

File tree

2 files changed

+12
-16
lines changed

2 files changed

+12
-16
lines changed

.github/workflows/run-tests.yml

+11-15
Original file line numberDiff line numberDiff line change
@@ -9,21 +9,17 @@ jobs:
99
strategy:
1010
fail-fast: true
1111
matrix:
12-
php: ["7.2", "7.3", "7.4", "8.0", "8.1", "8.2", "8.3"]
12+
php: ["7.2", "7.4", "8.0", "8.1", "8.2", "8.3"]
1313
laravel: ["^6.0", "^7.0", "^8.0", "^9.0", "^10.0", "^11.0"]
1414
exclude:
1515
- php: "8.0"
1616
laravel: "^10.0"
1717
- php: "7.4"
1818
laravel: "^10.0"
19-
- php: "7.3"
20-
laravel: "^10.0"
2119
- php: "7.2"
2220
laravel: "^10.0"
2321
- php: "7.4"
2422
laravel: "^9.0"
25-
- php: "7.3"
26-
laravel: "^9.0"
2723
- php: "7.2"
2824
laravel: "^9.0"
2925
- php: "8.3"
@@ -44,16 +40,16 @@ jobs:
4440
laravel: "^6.0"
4541
- php: "8.1"
4642
laravel: "^6.0"
47-
- laravel: "11.0"
48-
php: "7.2"
49-
- laravel: "11.0"
50-
php: "7.3"
51-
- laravel: "11.0"
52-
php: "7.4"
53-
- laravel: "11.0"
54-
php: "8.0"
55-
- laravel: "11.0"
56-
php: "8.1"
43+
- php: "7.2"
44+
laravel: "^11.0"
45+
- php: "7.4"
46+
laravel: "^11.0"
47+
- php: "8.0"
48+
laravel: "^11.0"
49+
- php: "8.1"
50+
laravel: "^11.0"
51+
- php: "8.2"
52+
laravel: "^11.0"
5753
name: "PHP${{ matrix.php }} - Laravel${{ matrix.laravel }}"
5854

5955
runs-on: "ubuntu-latest"

phpunit.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<phpunit colors="true" bootstrap="./vendor/autoload.php" convertNoticesToExceptions="true" convertWarningsToExceptions="false" stopOnError="false" stopOnFailure="false" stopOnIncomplete="false" stopOnSkipped="false">
2+
<phpunit colors="true" bootstrap="./vendor/autoload.php" convertNoticesToExceptions="false" convertWarningsToExceptions="false" stopOnError="false" stopOnFailure="false" stopOnIncomplete="false" stopOnSkipped="false">
33
<testsuites>
44
<testsuite name="all">
55
<directory suffix="Test.php">tests/</directory>

0 commit comments

Comments
 (0)