Update all non-major dependencies #652
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: | |
| - '[0-9]+.[0-9]+.x' | |
| - 'refs/pull/*' | |
| tags: | |
| env: | |
| default_php: 8.2 | |
| jobs: | |
| matrix: | |
| name: Generate job matrix | |
| runs-on: ubuntu-latest | |
| outputs: | |
| matrix: ${{ steps.matrix.outputs.matrix }} | |
| steps: | |
| - name: Gather CI configuration | |
| id: matrix | |
| uses: laminas/laminas-ci-matrix-action@6383012fc66934b529727af575aa783bd82a4c03 # v1 | |
| qa: | |
| name: QA Checks | |
| needs: [matrix] | |
| runs-on: ${{ matrix.operatingSystem }} | |
| strategy: | |
| fail-fast: false | |
| matrix: ${{ fromJSON(needs.matrix.outputs.matrix) }} | |
| steps: | |
| - name: ${{ matrix.name }} | |
| uses: laminas/laminas-continuous-integration-action@757a62736b25b11240101d3c616fff4cbc707cfd # v1 | |
| with: | |
| job: ${{ matrix.job }} | |
| # | |
| # Runs CS in a separate job because composer plugins need to run here, but must be disabled | |
| # everywhere else in the matrix. | |
| # | |
| coding-standards: | |
| name: Coding Standards | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| - uses: shivammathur/setup-php@f3e473d116dcccaddc5834248c87452386958240 # 2.37.2 | |
| with: | |
| php-version: ${{ env.default_php }} | |
| tools: composer | |
| - uses: ramsey/composer-install@65e4f84970763564f46a70b8a54b90d033b3bdda # 4.0.0 | |
| with: | |
| composer-options: "--no-scripts" | |
| - run: vendor/bin/phpcs |