Skip to content

Commit

Permalink
Ditch action in favor of running tool directly (#1354)
Browse files Browse the repository at this point in the history
Closes #1353
  • Loading branch information
greg0ire authored Aug 18, 2023
1 parent 528e9d6 commit 2dcf355
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/bc-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,13 @@ jobs:
with:
fetch-depth: 0

- name: "Roave BC Check"
uses: "docker://nyholm/roave-bc-check-ga"
- name: Install PHP with extensions.
uses: shivammathur/setup-php@v2
with:
args: "--from=${{ github.event.pull_request.base.sha }}"
php-version: "8.2"

- name: Install roave/backward-compatibility-check.
run: composer require --dev roave/backward-compatibility-check

- name: Run roave/backward-compatibility-check.
run: vendor/bin/roave-backward-compatibility-check

0 comments on commit 2dcf355

Please sign in to comment.