Renamed RegisteredWebhooks entity to WebhookRegistration #2
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# See https://github.com/Roave/BackwardCompatibilityCheck | |
name: "Backwards Compatibility Check" | |
on: | |
pull_request: ~ | |
jobs: | |
backwards-compatibility-check: | |
name: "Backwards Compatibility Check" | |
runs-on: "ubuntu-latest" | |
steps: | |
- name: "Checkout" | |
uses: "actions/checkout@v4" | |
with: | |
fetch-depth: 0 | |
- name: "Setup PHP, with composer and extensions" | |
uses: "shivammathur/setup-php@v2" | |
with: | |
php-version: "8.1" | |
coverage: "none" | |
- name: "Install tool" | |
run: "composer global require roave/backward-compatibility-check" | |
- name: "Check for BC breaks" | |
run: "~/.composer/vendor/bin/roave-backward-compatibility-check --from=origin/${{ github.event.pull_request.base.ref }} --format=github-actions" |