From bdf067b58a951f963dc2284923a0c89ec25593a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20Paris?= Date: Sat, 15 Oct 2022 12:32:52 +0200 Subject: [PATCH] Stop triggering static analysis workflows on tests In my opinion it is not great that we do not run static analysis tools on tests, but since we do not, let us stop triggering extra jobs for no reason. --- .github/workflows/static-analysis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/static-analysis.yml b/.github/workflows/static-analysis.yml index c9052e36ff6..fd5a67aee69 100644 --- a/.github/workflows/static-analysis.yml +++ b/.github/workflows/static-analysis.yml @@ -11,7 +11,7 @@ on: - lib/** - phpstan* - psalm* - - tests/** + - tests/Doctrine/StaticAnalysis/** push: branches: - "*.x" @@ -21,7 +21,7 @@ on: - lib/** - phpstan* - psalm* - - tests/** + - tests/Doctrine/StaticAnalysis/** jobs: static-analysis-phpstan: