CI: Add TYPO3 v13 to test matrix #1615
This file contains 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: "Mutation tests" | |
on: | |
pull_request: | |
branches: | |
- "**" | |
push: | |
branches: | |
- "main" | |
jobs: | |
mutation-tests: | |
name: "Mutation tests" | |
runs-on: ${{ matrix.operating-system }} | |
strategy: | |
matrix: | |
php-version: | |
- "8.1" | |
operating-system: | |
- "ubuntu-latest" | |
steps: | |
- name: "Checkout" | |
uses: "actions/checkout@v4" | |
with: | |
fetch-depth: 0 | |
- name: "Install PHP" | |
uses: "shivammathur/setup-php@v2" | |
with: | |
coverage: "xdebug" | |
php-version: "${{ matrix.php-version }}" | |
ini-values: memory_limit=-1 | |
tools: composer:v2, cs2pr | |
- name: "Cache dependencies" | |
uses: "actions/cache@v4" | |
with: | |
path: | | |
~/.composer/cache | |
.Build | |
key: "php-${{ matrix.php-version }}-${{ matrix.dependencies }}" | |
restore-keys: "php-${{ matrix.php-version }}-${{ matrix.dependencies }}" | |
- name: "Install dependencies" | |
run: "composer install" | |
- name: "Infection" | |
run: "composer test:mutation" | |
env: | |
#INFECTION_BADGE_API_KEY: ${{ secrets.INFECTION_BADGE_API_KEY }} | |
STRYKER_DASHBOARD_API_KEY: ${{ secrets.STRYKER_DASHBOARD_API_KEY }} | |