Merge pull request #57 from 80Quattro/feature-powermail-tests #107
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: core 12 | |
| on: [ push, pull_request ] | |
| jobs: | |
| tests: | |
| name: v12 | |
| runs-on: ubuntu-24.04 | |
| strategy: | |
| # This prevents cancellation of matrix job runs, if one/two already failed and let the | |
| # rest matrix jobs be executed anyway. | |
| fail-fast: false | |
| matrix: | |
| php: [ '8.1', '8.2' ] | |
| composerInstall: [ 'composerInstallLowest', 'composerInstallHighest' ] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - name: Install testing system | |
| run: Build/Scripts/runTests.sh -t 12 -p ${{ matrix.php }} -s ${{ matrix.composerInstall }} | |
| - name: Lint PHP | |
| run: Build/Scripts/runTests.sh -t 12 -p ${{ matrix.php }} -s lint | |
| - name: Validate code against CGL | |
| run: PHP_CS_FIXER_IGNORE_ENV=1 Build/Scripts/runTests.sh -t 12 -p 8.2 -s cgl -n | |
| - name: Unit Tests | |
| run: Build/Scripts/runTests.sh -t 12 -p ${{ matrix.php }} -s unit |