Allow filter chains to be constructed with instances in the specification #1000
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.1 | |
| php_extensions: fileinfo,filter,iconv,mbstring,bz2,zlib,zip | |
| jobs: | |
| ci: | |
| uses: laminas/workflow-continuous-integration/.github/workflows/continuous-integration.yml@1.x | |
| composer-require-checker: | |
| name: "Check for missing dependencies" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4.2.2 | |
| - uses: shivammathur/setup-php@2.35.2 | |
| with: | |
| php-version: ${{ env.default_php }} | |
| ini-values: memory_limit=-1 | |
| extensions: ${{ env.php_extensions }} | |
| - uses: ramsey/composer-install@3.1.1 | |
| - run: make install-tools | |
| - run: make composer-require-checker |