Bump PHP version in CI #694
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: "Continuous Integration" | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| tags: | |
| env: | |
| default_php: 8.2 | |
| jobs: | |
| ci: | |
| uses: laminas/workflow-continuous-integration/.github/workflows/[email protected] | |
| rector: | |
| runs-on: ubuntu-latest | |
| name: Run Rector on PHP | |
| steps: | |
| - uses: actions/[email protected] | |
| - uses: shivammathur/[email protected] | |
| with: | |
| php-version: ${{ env.default_php }} | |
| tools: composer | |
| - uses: ramsey/composer-install@v3 | |
| - run: composer rector | |
| dep-analyser: | |
| runs-on: ubuntu-latest | |
| name: Run Dependency analysis | |
| steps: | |
| - uses: actions/[email protected] | |
| - uses: shivammathur/[email protected] | |
| with: | |
| php-version: ${{ env.default_php }} | |
| tools: composer | |
| - uses: ramsey/composer-install@v3 | |
| - run: composer dep-analysis |