File tree Expand file tree Collapse file tree 1 file changed +5
-7
lines changed Expand file tree Collapse file tree 1 file changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -44,12 +44,10 @@ jobs:
44
44
env :
45
45
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
46
46
47
+ # Fixes any pubkeys failure (add a `composer diagnose` step to debug if necessary)
47
48
- name : " Composer force self-update"
48
49
run : " composer self-update"
49
50
50
- - name : " Composer diagnostics"
51
- run : " composer diagnose"
52
-
53
51
- name : " Install lowest dependencies"
54
52
if : ${{ matrix.dependencies == 'lowest' }}
55
53
run : " composer update --prefer-lowest --no-interaction --no-progress"
@@ -58,10 +56,10 @@ jobs:
58
56
if : ${{ matrix.dependencies == 'highest' }}
59
57
run : " composer update --no-interaction --no-progress"
60
58
61
- - name : " Tests (lowest )"
62
- if : ${{ matrix.dependencies == 'lowest ' }}
59
+ - name : " Tests (PHPUnit 9 )"
60
+ if : ${{ matrix.php-version <= '8.0 ' }}
63
61
run : " vendor/bin/phpunit --configuration phpunit9.xml.dist"
64
62
65
- - name : " Tests (highest )"
66
- if : ${{ matrix.dependencies == 'highest ' }}
63
+ - name : " Tests (PHPUnit 10+ )"
64
+ if : ${{ matrix.php-version >= '8.1 ' }}
67
65
run : " vendor/bin/phpunit"
You can’t perform that action at this time.
0 commit comments