fix(db): Fix zp_entity_relationship table migration issues #1292
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Static Analysis | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: [ "master", "*.*-dev" ] | |
| pull_request: | |
| branches: [ "master", "*.*-dev" ] | |
| jobs: | |
| phpstan: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Install Dependencies | |
| run: make build-dev | |
| - name: Run PHPStan Analysis | |
| run: make phpstan |