bump: all the things #298
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: Build | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - "master" | |
| jobs: | |
| MutationTest: | |
| runs-on: ubuntu-latest | |
| env: | |
| PHP_VERSION: ${{ matrix.php }} | |
| strategy: | |
| matrix: | |
| php: [ "8.2", "8.3" ] | |
| dependencies: [ lowest, highest ] | |
| steps: | |
| - | |
| uses: actions/checkout@v3 | |
| - | |
| name: "Composer install: ${{ matrix.dependencies }}" | |
| run: make all/composer/install-${{ matrix.dependencies }} | |
| - | |
| name: Tests with mutation | |
| run: make test | |
| CodeQualityAnalysis: | |
| runs-on: ubuntu-latest | |
| env: | |
| PHP_VERSION: ${{ matrix.php }} | |
| strategy: | |
| matrix: | |
| php: [ "8.2", "8.3" ] | |
| dependencies: [ lowest, highest ] | |
| steps: | |
| - | |
| uses: "actions/checkout@v3" | |
| - | |
| name: "Composer install: ${{ matrix.dependencies }}" | |
| run: make all/composer/install-${{ matrix.dependencies }} | |
| - | |
| name: Run code quality analysis | |
| run: make analyze |