diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d7e2259..56d8af5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -4,6 +4,8 @@ on: push: branches: - master + - feature/* + - hotfix/* jobs: build: @@ -24,4 +26,4 @@ jobs: cp .env.example .env - name: Run Tests - run: composer exclude-notification-tests + run: composer test diff --git a/composer.json b/composer.json index 00ac624..8c78f37 100755 --- a/composer.json +++ b/composer.json @@ -42,6 +42,5 @@ }, "scripts": { "tests": "./vendor/bin/phpunit tests --color=always --stop-on-failure", - "exclude-notification-tests": "./vendor/bin/phpunit tests --color=always --stop-on-failure --exclude-group=notification" } }