diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 7045793..781c4ae 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -38,3 +38,6 @@ jobs: - name: Unit Tests run: composer test:unit + + - name: Unit Options Tests + run: composer test:unit:options diff --git a/composer.json b/composer.json index b94b7af..740e838 100644 --- a/composer.json +++ b/composer.json @@ -59,9 +59,11 @@ "lint": "pint", "test:lint": "pint --test", "test:unit": "pest --colors=always --exclude-group=options", + "test:unit:options": "pest --colors=always --group=options --without-exception-handling --without-deprecation-handling", "test": [ "@test:lint", "@test:unit", + "@test:unit:options" ] } }