2022-08-12 02:30:52 -05:00
|
|
|
name: Mutation tests
|
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_call:
|
|
|
|
inputs:
|
|
|
|
test-group:
|
|
|
|
type: string
|
|
|
|
required: true
|
|
|
|
description: One of unit, db, api or cli
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
mutation-tests:
|
|
|
|
runs-on: ubuntu-22.04
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
php-version: [ '8.1' ]
|
|
|
|
steps:
|
2022-08-13 04:06:41 -05:00
|
|
|
- uses: actions/checkout@v3
|
2022-08-13 04:16:33 -05:00
|
|
|
- uses: './.github/actions/ci-setup'
|
2022-08-12 13:32:16 -05:00
|
|
|
with:
|
|
|
|
php-version: ${{ matrix.php-version }}
|
2022-08-13 04:16:33 -05:00
|
|
|
php-extensions: openswoole-4.11.1
|
2022-08-13 03:53:24 -05:00
|
|
|
extensions-cache-key: mutation-tests-extensions-${{ matrix.php-version }}-${{ inputs.test-group }}
|
2022-08-12 11:19:12 -05:00
|
|
|
- uses: actions/download-artifact@v3
|
2022-08-12 02:30:52 -05:00
|
|
|
with:
|
|
|
|
path: build
|
|
|
|
- if: ${{ inputs.test-group == 'unit' }}
|
2022-08-13 05:31:12 -05:00
|
|
|
run: composer infect:ci:unit -- --git-diff-lines --logger-github=false
|
2022-08-12 02:30:52 -05:00
|
|
|
env:
|
|
|
|
INFECTION_BADGE_API_KEY: ${{ secrets.INFECTION_BADGE_API_KEY }}
|
|
|
|
- if: ${{ inputs.test-group != 'unit' }}
|
2022-08-13 05:31:12 -05:00
|
|
|
run: composer infect:ci:${{ inputs.test-group }} -- --git-diff-lines --logger-github=false
|