diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 3a41dde..c812fa2 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -41,4 +41,4 @@ jobs: composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction --no-suggest - name: Execute tests - run: vendor/bin/phpunit + run: vendor/bin/phpunit --no-coverage diff --git a/phpunit.xml.dist b/phpunit.xml.dist index 298602c..6c92107 100644 --- a/phpunit.xml.dist +++ b/phpunit.xml.dist @@ -1,14 +1,18 @@ - + - tests + ./tests - - ./src - diff --git a/tests/ExampleTest.php b/tests/ExampleTest.php new file mode 100644 index 0000000..8ffa990 --- /dev/null +++ b/tests/ExampleTest.php @@ -0,0 +1,13 @@ +assertTrue(true); + } +}