@@ -14,45 +14,45 @@ jobs:
1414 strategy :
1515 matrix :
1616 operating-system : [ubuntu-latest]
17- php-version : ['7.4', '8.0', '8.1', '8.2', '8.3']
17+ php-version : ['7.4', '8.0', '8.1', '8.2', '8.3', '8.4', '8.5', '8.6' ]
1818
1919 runs-on : ${{ matrix.operating-system }}
2020
2121 steps :
2222 - name : Checkout code
23- uses : actions/checkout@v4
23+ uses : actions/checkout@v6
2424
2525 - name : Setup PHP
2626 uses : shivammathur/setup-php@v2
2727 with :
2828 php-version : ${{ matrix.php-version }}
2929 extensions : gd,intl,mbstring,sqlite,zip
30- coverage : disable
30+ coverage : none
3131
32- - run : composer install --no-progress --no-suggest -- ignore-platform-reqs
32+ - run : composer install --no-progress --ignore-platform-reqs
3333
34- - run : ./vendor-bin/phpstan/vendor/bin/phpstan analyze --no-progress --error-format=github
34+ - run : composer webtrees-lib:phpstan
3535
3636 psalm :
3737 name : psalm - PHP ${{ matrix.php-version }} on ${{ matrix.operating-system }}
3838
3939 strategy :
4040 matrix :
4141 operating-system : [ubuntu-latest]
42- php-version : ['7.4', '8.0', '8.1', '8.2', '8.3']
42+ php-version : ['7.4', '8.0', '8.1', '8.2', '8.3', '8.4', '8.5', '8.6' ]
4343
4444 runs-on : ${{ matrix.operating-system }}
4545
4646 steps :
4747 - name : Checkout code
48- uses : actions/checkout@v4
48+ uses : actions/checkout@v6
4949
5050 - name : Setup PHP
5151 uses : shivammathur/setup-php@v2
5252 with :
5353 php-version : ${{ matrix.php-version }}
5454 extensions : gd,intl,mbstring,sqlite,zip
55- coverage : disable
55+ coverage : none
5656
5757 - run : composer global require vimeo/psalm
5858
0 commit comments