Skip to content

Commit

Permalink
Ditch action in favor of running tool directly (#231)
Browse files Browse the repository at this point in the history
  • Loading branch information
greg0ire committed Aug 20, 2023
1 parent 2c28a3c commit 6c00dd8
Showing 1 changed file with 14 additions and 5 deletions.
19 changes: 14 additions & 5 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,20 @@ jobs:
name: "Roave BC Check"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: fetch tags
run: git fetch --depth=1 origin +refs/tags/*:refs/tags/*
- name: Roave BC Check
uses: docker://nyholm/roave-bc-check-ga
- uses: "actions/checkout@v3"
with:
fetch-depth: 0

- name: Install PHP with extensions.
uses: shivammathur/setup-php@v2
with:
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

phpunit:
name: "PHPUnit"
Expand Down

0 comments on commit 6c00dd8

Please sign in to comment.