Split execution of db and unit mutation tests during ci workflow

This commit is contained in:
Alejandro Celaya 2021-05-22 21:33:50 +02:00
parent e19b3cc45d
commit 73aead01b4

View File

@ -217,6 +217,7 @@ jobs:
strategy: strategy:
matrix: matrix:
php-version: ['7.4', '8.0'] php-version: ['7.4', '8.0']
test-group: ['unit', 'db']
steps: steps:
- name: Checkout code - name: Checkout code
uses: actions/checkout@v2 uses: actions/checkout@v2
@ -232,7 +233,7 @@ jobs:
- uses: actions/download-artifact@v2 - uses: actions/download-artifact@v2
with: with:
path: build path: build
- run: composer infect:ci - run: composer infect:ci:${{ matrix.test-group }}
upload-coverage: upload-coverage:
needs: needs: