Merge pull request #113 from wikando-ck/feat/stringable-subject-id #2163
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
| # https://help.github.com/en/categories/automating-your-workflow-with-github-actions | |
| name: "Static Analysis by Psalm" | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - "[0-9]+.[0-9]+.x" | |
| - "renovate/*" | |
| jobs: | |
| static-analysis-psalm: | |
| name: "Static Analysis by Psalm" | |
| runs-on: ${{ matrix.operating-system }} | |
| strategy: | |
| matrix: | |
| dependencies: | |
| - "locked" | |
| php-version: | |
| - "8.4" | |
| operating-system: | |
| - "ubuntu-latest" | |
| steps: | |
| - name: "Checkout" | |
| uses: actions/checkout@v5 | |
| - name: "Install PHP" | |
| uses: "shivammathur/[email protected]" | |
| with: | |
| coverage: "pcov" | |
| php-version: "${{ matrix.php-version }}" | |
| ini-values: memory_limit=-1 | |
| extensions: pdo_sqlite | |
| - uses: ramsey/[email protected] | |
| with: | |
| dependency-versions: ${{ matrix.dependencies }} | |
| - name: "psalm" | |
| run: "vendor/bin/psalm --shepherd --stats" |