From ee64a2606ec72f2b66c448f7a19d33094f00886e Mon Sep 17 00:00:00 2001 From: Oliver Klee Date: Tue, 4 Oct 2022 11:38:58 +0200 Subject: [PATCH] Run the tests on CI with all warnings enabled This allows us to catch things that will break in future PHP versions, but still kind-of-work, e.g., deprecation warnings or incorrect types. --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e4e6a8cc..951992d2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -53,6 +53,7 @@ jobs: uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php-version }} + ini-values: error_reporting=E_ALL tools: composer:v2 coverage: "${{ matrix.coverage }}"