Skip to content

Commit

Permalink
next try
Browse files Browse the repository at this point in the history
Signed-off-by: dartcafe <github@dartcafe.de>
  • Loading branch information
dartcafe committed Nov 3, 2024
1 parent 88d75f5 commit a17df6e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/actions/setup-composer/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,11 @@ runs:
- name: Install dev packages
if: steps.cache-composer.outputs.cache-hit != 'true' && inputs.mode == 'dev'
working-directory: ${{ inputs.working-directory }}
run: composer i -W -o
run: composer i -o
shell: bash

- name: Install production packages
if: steps.cache-composer.outputs.cache-hit != 'true' && inputs.mode == 'production'
working-directory: ${{ inputs.working-directory }}
run: composer i -W --no-dev -o
run: composer i --no-dev -o
shell: bash
2 changes: 1 addition & 1 deletion .github/actions/setup-server/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ runs:
- name: Set up components
working-directory: ${{ inputs.server-path }}/apps/${{ inputs.app-name }}
shell: bash
run: composer i -W
run: composer i

- name: Remove Nextcloud API and Doctrine
working-directory: ${{ inputs.server-path }}/apps/${{ inputs.app-name }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/static-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ jobs:
php-tools: composer

- name: Install Nextcloud API
run: composer require --dev nextcloud/ocp:dev-${{ matrix.ocp-version }}
run: composer require --dev -W nextcloud/ocp:dev-${{ matrix.ocp-version }}

- name: Install symfony/console
run: composer require symfony/console
run: composer require -W symfony/console

- name: Run coding standards check
run: composer run psalm

0 comments on commit a17df6e

Please sign in to comment.