From 5316030c64991e228b8fd32122a0dd67433825ec Mon Sep 17 00:00:00 2001 From: Jonas Staudenmeir Date: Sun, 29 Sep 2024 13:56:36 +0200 Subject: [PATCH] Improve contributing manual --- .github/CONTRIBUTING.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 4169f48..a9e98b9 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -20,9 +20,10 @@ We accept contributions via Pull Requests on [GitHub](https://github.com/stauden - **Send coherent history** - Make sure each individual commit in your pull request is meaningful. If you had to make multiple intermediate commits while developing, please [squash them](http://www.git-scm.com/book/en/v2/Git-Tools-Rewriting-History#Changing-Multiple-Commit-Messages) before submitting. -## Running Tests +## Running Tests & Static Analysis ``` docker compose run --rm php8.3 composer install docker compose run --rm php8.3 vendor/bin/phpunit +docker compose run --rm php8.3 vendor/bin/phpstan analyse --memory-limit=-1 ```