We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3ddf945 + abb33eb commit be118a1Copy full SHA for be118a1
.github/workflows/integration.yaml
@@ -28,6 +28,17 @@ jobs:
28
- name: Building
29
run: php -dxdebug.mode=coverage ./vendor/bin/phpunit --coverage-text --coverage-clover ./build/logs/clover.xml
30
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
+
42
tests:
43
runs-on: ubuntu-latest
44
strategy:
0 commit comments