From 116386fab32fe7eec89180ecd952f3039f2776d2 Mon Sep 17 00:00:00 2001 From: Jeroen Date: Mon, 20 Mar 2023 12:42:09 +0100 Subject: [PATCH] run integration tests --- .github/workflows/main.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 2ffc8ee..a5378f4 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -45,5 +45,8 @@ jobs: - name: Execute unit tests run: vendor/bin/phpunit --testsuite unit --testdox --colors=always + - name: Execute integration tests + run: vendor/bin/phpunit --testsuite integration --testdox --colors=always + - name: Execute mutation tests run: vendor/bin/infection --threads=4 --min-covered-msi=50 --min-msi=50