Merge pull request #5 from Syndesi/main #64
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: Mutant Test | |
on: | |
- push | |
- fork | |
- pull_request | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
name: "Running mutant tests" | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Cache Composer dependencies | |
uses: actions/cache@v2 | |
with: | |
path: /tmp/composer-cache | |
key: ${{ runner.os }}-${{ hashFiles('**/composer.lock') }} | |
- uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.3' | |
tools: composer:v2 | |
- run: composer install --ignore-platform-req=php | |
shell: bash | |
- run: composer test:mutant | |
shell: bash |