From 241df9ac97255be85ad46d3f52a97e89e525cc99 Mon Sep 17 00:00:00 2001 From: Badlop Date: Fri, 12 Aug 2022 10:57:08 +0200 Subject: [PATCH] CI: Enable Dialyzer, test always, remove problematic deps --- .github/workflows/ci.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7692f7a..0cfce36 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -144,7 +144,13 @@ jobs: - run: make hooks - run: make options - run: make xref -# - run: make dialyzer # Too many errors... first fix them, then enable this + + - name: Run Dialyzer + if: always() + run: | + rm -rf _build/default/lib/ejabberd/ebin/fusco* + rm -rf _build/default/lib/ejabberd/ebin/observer_cli* + make dialyzer # Too many errors... first fix them, then enable this - name: View logs dir if: always()