fix: GacelaConfig with nullable arg on enableFileCache #201
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
# https://help.github.com/en/categories/automating-your-workflow-with-github-actions | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
name: Mutation Tests | |
jobs: | |
mutation-tests: | |
name: Mutation Tests | |
runs-on: ubuntu-latest | |
if: ${{ false }} # skip the mutation tests for now. There is an error related to the PHPUnit XSD schema validation. | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.1 | |
coverage: xdebug | |
tools: composer | |
- name: Install dependencies | |
run: composer install --prefer-dist | |
- name: Run mutation tests | |
env: | |
STRYKER_DASHBOARD_API_KEY: ${{ secrets.STRYKER_DASHBOARD_API_KEY }} | |
run: XDEBUG_MODE=coverage ./vendor/bin/infection --show-mutations --threads=max --min-msi=75 --min-covered-msi=75 |