Skip to content

Commit be118a1

Browse files
authored
Merge pull request #448 from basz/bc-check
adds roave bc checker
2 parents 3ddf945 + abb33eb commit be118a1

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/integration.yaml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,17 @@ jobs:
2828
- name: Building
2929
run: php -dxdebug.mode=coverage ./vendor/bin/phpunit --coverage-text --coverage-clover ./build/logs/clover.xml
3030

31+
bc-check:
32+
runs-on: ubuntu-latest
33+
steps:
34+
- uses: actions/checkout@v2
35+
with:
36+
fetch-depth: 0
37+
- name: "Check for BC breaks"
38+
run: |
39+
composer require --dev roave/backward-compatibility-check:^8.0
40+
vendor/bin/roave-backward-compatibility-check --install-development-dependencies --format=github-actions
41+
3142
tests:
3243
runs-on: ubuntu-latest
3344
strategy:

0 commit comments

Comments
 (0)