We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df76c6c commit 0c3f54cCopy full SHA for 0c3f54c
1 file changed
.github/workflows/shared_workflow.yml
@@ -221,8 +221,16 @@ jobs:
221
- name: Prepare Nextcloud server (for phpunit and psalm)
222
run: server/occ maintenance:install --admin-pass=admin
223
224
- - name: Install PHP dependencies
225
- run: composer install --no-progress --prefer-dist --optimize-autoloader
+ - name: Install PHP dependencies and enable integration_openproject app (for phpunit and psalm)
+ run: |
226
+ composer install --no-progress --prefer-dist --optimize-autoloader
227
+ cd server
228
+ if [ "${{matrix.nextcloudVersion}}" == "master" ]; then
229
+ # enable app even if it is not compatible with the master branch
230
+ ./occ a:e -f integration_openproject
231
+ else
232
+ ./occ a:e integration_openproject
233
+ fi
234
235
- name: PHP code analysis and linting
236
run: |
0 commit comments