Skip to content

Commit b5c9345

Browse files
committed
Update github workflow to only test php 7.4
1 parent f26c6a8 commit b5c9345

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

.github/workflows/run-tests.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,13 @@ jobs:
88
runs-on: ${{ matrix.os }}
99
strategy:
1010
matrix:
11-
php: [7.4, 7.3, 7.2]
11+
php: [7.4]
1212
laravel: [7.*, 6.*]
1313
dependency-version: [prefer-lowest, prefer-stable]
1414
os: [ubuntu-latest]
1515
include:
1616
- laravel: 7.*
17-
testbench: 5.*
1817
- laravel: 6.*
19-
testbench: 4.*
2018

2119
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} - ${{ matrix.os }}
2220

@@ -38,7 +36,8 @@ jobs:
3836

3937
- name: Install dependencies
4038
run: |
41-
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update
39+
composer require "laravel/framework:${{ matrix.laravel }}" --no-interaction --no-update
4240
composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction --no-suggest
41+
4342
- name: Execute tests
44-
run: vendor/bin/phpspec run
43+
run: vendor/bin/pest

0 commit comments

Comments
 (0)