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 f675380 commit 009c198Copy full SHA for 009c198
.github/workflows/tests.yml
@@ -10,7 +10,6 @@ jobs:
10
os: [ubuntu-latest]
11
php: ['8.3', '8.4']
12
dependency-version: [prefer-lowest, prefer-stable]
13
- parallel: ['', '--parallel']
14
15
name: PHP ${{ matrix.php }} - ${{ matrix.os }} - ${{ matrix.dependency-version }} - ${{ matrix.parallel }}
16
composer.json
@@ -47,9 +47,11 @@
47
"lint": "pint --parallel",
48
"test:lint": "pint --parallel --test",
49
"test:unit": "pest",
50
+ "test:unit-parallel": "pest --parallel",
51
"test": [
52
"@test:lint",
- "@test:unit"
53
+ "@test:unit",
54
+ "@test:unit-parallel"
55
]
56
},
57
"extra": {
0 commit comments