Skip to content

Commit

Permalink
Add backward compatibility checks
Browse files Browse the repository at this point in the history
  • Loading branch information
jeromegamez committed May 7, 2023
1 parent c82cb15 commit 25129e5
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,3 +69,23 @@ jobs:
uses: codecov/codecov-action@v3
with:
flags: unit

bc-checks:
name: Backward Compatibility Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.1
extensions: grpc

- name: Install dependencies
run: composer install

- name: Check for BC breaks
run: vendor/bin/roave-backward-compatibility-check --format=github-actions

0 comments on commit 25129e5

Please sign in to comment.