From a39017c817ad2df2b32d446c814f59b66a72a00a Mon Sep 17 00:00:00 2001 From: Brandon Shipley Date: Fri, 23 Jan 2026 18:38:13 -0800 Subject: [PATCH] cleanup workflow - if phpcs or phpstan report anything the build fails --- .gitea/workflows/ci.yaml | 16 ++-------------- 1 file changed, 2 insertions(+), 14 deletions(-) diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index 1f32cd5..862339b 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -127,19 +127,7 @@ jobs: fi - name: Run phpstan - run: vendor/bin/phpstan analyse src tests --error-format=github > phpstan.errors + run: vendor/bin/phpstan analyse src --error-format=github - name: Run phpcs - run: composer cs-check > phpcs.errors - - - uses: https://github.com/christopherHX/gitea-upload-artifact@v4 - with: - name: phpstan - path: phpstan.errors - - - uses: https://github.com/christopherHX/gitea-upload-artifact@v4 - with: - name: phpcs - path: phpcs.errors - - + run: composer cs-check