@@ -20,68 +20,55 @@ jobs:
2020 parallel-lint :
2121 name : ' ParallelLint'
2222 runs-on : ' ubuntu-latest'
23-
2423 steps :
2524 - name : Checkout repository
2625 uses : actions/checkout@v3
27-
2826 - name : Setup PHP
2927 uses : shivammathur/setup-php@v2
3028 with :
31- php-version : ' 8.1 '
29+ php-version : ' 8.2 '
3230 coverage : none
33-
3431 - name : Install dependencies
3532 uses : ramsey/composer-install@v2
36-
3733 - name : Run ParallelLint
3834 run : composer parallel-lint -- --no-progress --ignore-fails
3935
4036 psalm :
4137 name : ' Psalm'
4238 runs-on : ' ubuntu-latest'
43-
4439 steps :
4540 - name : Checkout repository
4641 uses : actions/checkout@v3
47-
4842 - name : Setup PHP
4943 uses : shivammathur/setup-php@v2
5044 with :
51- php-version : ' 8.1 '
45+ php-version : ' 8.2 '
5246 coverage : none
53-
5447 - name : Install dependencies
5548 uses : ramsey/composer-install@v2
56-
5749 - name : Run Psalm
58- run : composer psalm -- --no-progress --no-cache --output-format=github
50+ run : composer psalm -- --show-info=false -- no-progress --no-suggestions --no-cache
5951
6052 php-cs-fixer :
6153 name : ' PHPCsFixer'
6254 runs-on : ' ubuntu-latest'
63-
6455 steps :
6556 - name : Checkout repository
6657 uses : actions/checkout@v3
67-
6858 - name : Setup PHP
6959 uses : shivammathur/setup-php@v2
7060 with :
71- php-version : ' 8.1 '
61+ php-version : ' 8.2 '
7262 coverage : none
73-
7463 - name : Install dependencies
7564 uses : ramsey/composer-install@v2
76-
7765 - name : Run PHPCsFixer
7866 run : composer php-cs-fixer:diff -- --no-interaction --using-cache=no
7967
8068 phpunit :
8169 name : ' PHPUnit'
8270 needs : ['parallel-lint', 'psalm', 'php-cs-fixer']
8371 runs-on : ${{ matrix.operating-system }}
84-
8572 strategy :
8673 fail-fast : false
8774 matrix :
@@ -91,24 +78,21 @@ jobs:
9178 php-version :
9279 - ' 8.0'
9380 - ' 8.1'
81+ - ' 8.2'
9482 composer-dependency :
9583 - ' lowest'
9684 - ' highest'
97-
9885 steps :
9986 - name : Checkout repository
10087 uses : actions/checkout@v3
101-
10288 - name : Setup PHP
10389 uses : shivammathur/setup-php@v2
10490 with :
10591 php-version : ${{ matrix.php-version }}
10692 coverage : none
107-
10893 - name : Install dependencies
10994 uses : ramsey/composer-install@v2
11095 with :
11196 dependency-versions : ${{ matrix.composer-dependency }}
112-
11397 - name : Run PHPUnit
11498 run : composer phpunit -- --no-interaction --do-not-cache-result
0 commit comments