Skip to content

Commit 23effaf

Browse files
committed
separate Unit Tests depending on system in tests workflow
1 parent f88a88a commit 23effaf

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Diff for: .github/workflows/tests.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,11 @@ jobs:
3333
composer require "pestphp/pest:^${{ matrix.pest }}" --no-interaction --no-update
3434
composer update --${{ matrix.dependency-version }} --no-interaction --no-progress --ansi
3535
36-
- name: Unit Tests
36+
- name: Unit Tests (not macos)
3737
if: matrix.os !== 'macos-latest'
3838
run: composer test:unit -- --coverage-clover ./coverage.xml
39+
40+
- name: Unit Tests (macos)
3941
if: matrix.os == 'macos-latest'
4042
run: composer test:unit
4143

0 commit comments

Comments
 (0)