We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
https://github.com/ergebnis/.github/blob/main/actions/composer/install/run.sh
name: "Shared Install Dependencies" inputs: dependencies: type: "string" default: "highest" required: true runs: using: "composite" steps: - name: "Install lowest dependencies" if: ${{ inputs.dependencies == 'lowest' }} shell: "bash" run: "composer update --prefer-lowest --no-interaction --no-progress" - name: "Install highest dependencies" if: ${{ inputs.dependencies == 'highest' }} shell: "bash" run: "composer update --no-interaction --no-progress" - name: "Install locked dependencies" if: ${{ inputs.dependencies == 'locked' }} shell: "bash" run: | test -f composer.lock composer install --no-interaction --no-progress - name: "Install development dependencies" if: ${{ inputs.dependencies == 'development' }} shell: "bash" run: | composer config --no-interaction -- minimum-stability dev composer update --no-interaction --no-progress
The text was updated successfully, but these errors were encountered:
No branches or pull requests
https://github.com/ergebnis/.github/blob/main/actions/composer/install/run.sh
The text was updated successfully, but these errors were encountered: