Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
matrix:
php-version: ["8.2", "8.5"]

name: Integration PHP ${{ matrix.php-version }}
name: PHP ${{ matrix.php-version }}

steps:
- name: Checkout repository
Expand Down Expand Up @@ -85,3 +85,13 @@ jobs:

- name: Run integration tests
run: composer test:integration

integration-test:
runs-on: ubuntu-latest
needs: integration

name: Integration Test

steps:
- name: Integration test matrix passed
run: echo "All integration test matrix jobs passed."
14 changes: 12 additions & 2 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
matrix:
php-version: ["8.2", "8.5"]

name: Unit PHP ${{ matrix.php-version }}
name: PHP ${{ matrix.php-version }}

steps:
- name: Checkout repository
Expand All @@ -31,4 +31,14 @@ jobs:
run: composer install --prefer-dist --no-progress --no-interaction

- name: Run unit tests
run: composer test:unit
run: composer test:unit

unit-test:
runs-on: ubuntu-latest
needs: unit

name: Unit Test

steps:
- name: Unit test matrix passed
run: echo "All unit test matrix jobs passed."
Loading