File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -101,7 +101,10 @@ jobs:
101101
102102 - name : Set up PHPUnit
103103 working-directory : apps/${{ env.APP_NAME }}
104- run : composer i
104+ # remove psalm because it requires php >= 8.2 and we want to test with 8.1
105+ run : |
106+ composer uninstall --dev psalm/phar
107+ composer i
105108
106109 - name : Set up Nextcloud
107110 run : |
Original file line number Diff line number Diff line change 5050 coverage : none
5151
5252 - name : Install dependencies
53- run : composer i
53+ # remove psalm because it requires php >= 8.2 and we want to test with 8.0
54+ run : |
55+ composer uninstall --dev psalm/phar
56+ composer i
5457
5558 - name : Run coding standards check
5659 run : composer run cs:check || ( echo 'Please run `composer run cs:fix` to format your code' && exit 1 )
Original file line number Diff line number Diff line change @@ -100,7 +100,10 @@ jobs:
100100
101101 - name : Set up PHPUnit
102102 working-directory : apps/${{ env.APP_NAME }}
103- run : composer i
103+ # remove psalm because it requires php >= 8.2 and we want to test with 8.1
104+ run : |
105+ composer uninstall --dev psalm/phar
106+ composer i
104107
105108 - name : Set up Nextcloud
106109 run : |
You can’t perform that action at this time.
0 commit comments