Update defaults files #63
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
| ## GitHub Actions Workflow template for PHPStan Testing. | |
| ## Uncomment this file to enable PHPStan testing on GitHub Actions. | |
| # name: PHPStan | |
| # on: | |
| # push: | |
| # branches: ['*'] # Apply to all branches. List specific branches if needed. | |
| # pull_request: | |
| # branches: ['*'] # Apply to all branches. List specific branches if needed. | |
| # workflow_dispatch: | |
| # jobs: | |
| # PHPStan: | |
| # strategy: | |
| # fail-fast: false | |
| # matrix: | |
| # php_versions: ['8.1', '8.2', '8.3', '8.4', '8.5'] # PHP versions to test against | |
| # runs-on: ubuntu-latest | |
| # name: PHPStan - ${{ matrix.php_versions }} | |
| # steps: | |
| # - uses: actions/checkout@v4 | |
| # - name: Setup PHP, with composer and extensions | |
| # uses: shivammathur/setup-php@v2 | |
| # with: | |
| # php-version: ${{ matrix.php_versions }} | |
| # - name: Install Dependencies | |
| # run: composer install --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist | |
| # - name: Run PHPStan | |
| # run: vendor/bin/phpstan analyse |