feat: add v3 JSON files for August 2023 #373
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: psalm | |
| on: | |
| push: | |
| branches: | |
| - 'gh-pages' | |
| pull_request: | |
| schedule: | |
| - cron: '0 0 * * *' | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| psalm: | |
| name: Psalm Static Analysis on PHP ${{ matrix.php-version }} (Ubuntu 24.04) | |
| runs-on: ubuntu-24.04 | |
| strategy: | |
| matrix: | |
| php-version: | |
| - '8.4' | |
| steps: | |
| - name: Setup PHP ${{ matrix.php-version }} | |
| uses: shivammathur/setup-php@accd6127cb78bee3e8082180cb391013d204ef9f | |
| with: | |
| php-version: ${{ matrix.php-version }} | |
| extensions: mbstring, xml | |
| tools: composer:v2 | |
| coverage: none | |
| - name: Checkout Repository | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd | |
| - name: Install Dependencies | |
| run: composer install --prefer-dist --no-interaction --no-progress --dev | |
| - name: Run Psalm | |
| run: vendor/bin/psalm --config=psalm.xml.dist --show-info=true |