We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc8f1c1 commit 327f856Copy full SHA for 327f856
.github/workflows/run-tests.yml
@@ -24,7 +24,7 @@ jobs:
24
fail-fast: true
25
matrix:
26
os: [ubuntu-latest]
27
- php: [7.4, 8.0]
+ php: [7.2, 7.3, 7.4, 8.0]
28
laravel: [7.*, 8.*]
29
stability: [prefer-stable]
30
include:
@@ -33,7 +33,7 @@ jobs:
33
- laravel: 7.*
34
testbench: ^5.0
35
36
- name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
+ name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} - Testbench ${{ matrix.testbench }}
37
38
steps:
39
- name: Checkout code
@@ -57,4 +57,4 @@ jobs:
57
composer update --${{ matrix.stability }} --prefer-dist --no-interaction
58
59
- name: Execute tests
60
- run: vendor/bin/phpunit
+ run: composer run-script test
0 commit comments