CI: Enable Dialyzer, test always, remove problematic deps

This commit is contained in:
Badlop 2022-08-12 10:57:08 +02:00
parent 8eb58060f8
commit 241df9ac97
1 changed files with 7 additions and 1 deletions

View File

@ -144,7 +144,13 @@ jobs:
- run: make hooks - run: make hooks
- run: make options - run: make options
- run: make xref - 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 - name: View logs dir
if: always() if: always()