Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .github/workflows/bc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ on:
description: Use binary installed with Composer and skip installing binary in the action.
default: false
type: boolean
install-development-dependencies:
description: Install development dependencies of the compared package.
default: false
type: boolean
extensions:
description: List of extensions to PHP.
default: ''
Expand Down Expand Up @@ -78,4 +82,4 @@ jobs:
packages: ${{ inputs.required-packages }}

- name: Run roave/backward-compatibility-check.
run: vendor/bin/roave-backward-compatibility-check
run: vendor/bin/roave-backward-compatibility-check${{ inputs['install-development-dependencies'] && ' --install-development-dependencies' || '' }}