[TASK] Ignore mcp #113
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: CI | |
| on: [push] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| typo3: [^11.5, ^12.4] | |
| php: ['8.1', '8.2'] | |
| include: | |
| - typo3: ^11.5 | |
| php: '7.4' | |
| - typo3: ^11.5 | |
| php: '8.0' | |
| - typo3: ^11.5 | |
| php: '8.1' | |
| - typo3: ^11.5 | |
| php: '8.2' | |
| - typo3: ^12.4 | |
| php: '8.1' | |
| - typo3: ^12.4 | |
| php: '8.2' | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Setup PHP ${{ matrix.php }} | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php }} | |
| - name: Validate composer.json and composer.lock | |
| run: composer validate | |
| - name: Install dependencies | |
| run: | | |
| composer require typo3/cms-core:${{ matrix.typo3 }} --no-progress --ansi | |
| git checkout composer.json | |
| - name: Install dev tools | |
| run: | | |
| for tool in `ls -1 Build/tools`; do | |
| composer install --working-dir="Build/tools/$tool" --no-progress --ansi | |
| done | |
| - name: CGL | |
| run: composer t3g:cgl | |
| - name: Lint PHP | |
| run: composer t3g:test:php:lint | |
| - name: Unit Tests | |
| run: composer t3g:test:php:unit |