We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d491558 commit 91cfc5fCopy full SHA for 91cfc5f
.github/workflows/push.yml
@@ -194,3 +194,20 @@ jobs:
194
uses: docker://mickaelandrieu/psalm-ga
195
env:
196
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
197
+
198
+ bc_check:
199
+ name: BC Check
200
+ runs-on: ubuntu-latest
201
+ needs: [setup, phpunit]
202
+ steps:
203
+ - uses: actions/checkout@master
204
+ - name: Restore/cache vendor folder
205
+ uses: actions/cache@v1
206
+ with:
207
+ path: vendor
208
+ key: all-build-${{ hashFiles('**/composer.lock') }}
209
+ restore-keys: |
210
+ all-build-${{ hashFiles('**/composer.lock') }}
211
+ all-build-
212
+ - name: Roave BC Check
213
+ uses: docker://nyholm/roave-bc-check-ga
0 commit comments