Skip to content

Commit 009c198

Browse files
committed
Removes parallel
1 parent f675380 commit 009c198

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/tests.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ jobs:
1010
os: [ubuntu-latest]
1111
php: ['8.3', '8.4']
1212
dependency-version: [prefer-lowest, prefer-stable]
13-
parallel: ['', '--parallel']
1413

1514
name: PHP ${{ matrix.php }} - ${{ matrix.os }} - ${{ matrix.dependency-version }} - ${{ matrix.parallel }}
1615

composer.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,11 @@
4747
"lint": "pint --parallel",
4848
"test:lint": "pint --parallel --test",
4949
"test:unit": "pest",
50+
"test:unit-parallel": "pest --parallel",
5051
"test": [
5152
"@test:lint",
52-
"@test:unit"
53+
"@test:unit",
54+
"@test:unit-parallel"
5355
]
5456
},
5557
"extra": {

0 commit comments

Comments
 (0)