Skip to content

Commit 91cfc5f

Browse files
committed
Add bc check
1 parent d491558 commit 91cfc5f

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/push.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -194,3 +194,20 @@ jobs:
194194
uses: docker://mickaelandrieu/psalm-ga
195195
env:
196196
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

Comments
 (0)