Skip to content

Commit 78c1f53

Browse files
committed
Fix tests
1 parent dda6689 commit 78c1f53

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/run-tests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
fail-fast: true
1313
matrix:
14-
os: [ubuntu-latest, windows-latest, macos-latest]
14+
os: [ubuntu-latest]
1515
php: [8.2, 8.3, 8.4]
1616
include:
1717
- php: 8.4
@@ -26,7 +26,7 @@ jobs:
2626
laravel: 10.*
2727
testbench: 8.*
2828

29-
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
29+
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.os }}
3030

3131
steps:
3232
- name: Checkout code
@@ -41,8 +41,8 @@ jobs:
4141

4242
- name: Install dependencies
4343
run: |
44-
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update
45-
composer update --${{ matrix.stability }} --prefer-dist --no-interaction
44+
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update --dev
45+
composer update --prefer-dist --no-interaction
4646
4747
- name: Execute tests
4848
run: vendor/bin/pest --parallel

0 commit comments

Comments
 (0)