Skip to content

Commit 7c2739e

Browse files
committed
Optimize parallelism
1 parent e7ae6a6 commit 7c2739e

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/actions.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,14 @@ jobs:
2222
runs-on: ubuntu-latest # ${{ matrix.operating-system }}
2323
continue-on-error: ${{ matrix.experimental }}
2424
strategy:
25+
max-parallel: 2
2526
matrix:
2627
# operating-system: [ubuntu-latest, windows-latest, macos-latest]
27-
php-versions: ['7.3', '7.4', '8.0']
28+
php-versions: ['7.3', '7.4']
2829
experimental: [false]
2930
include:
31+
- php-versions: '8.0'
32+
experimental: true
3033
- php-versions: '8.1'
3134
experimental: true
3235
name: PHP ${{ matrix.php-versions }} # Test on ${{ matrix.operating-system }}

0 commit comments

Comments
 (0)