diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index e05d89c..46f20ce 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -32,8 +32,8 @@ jobs: run: rebar3 compile - name: Xref Checks run: rebar3 xref - # - name: Dialyzer - # run: rebar3 dialyzer + - name: Dialyzer + run: rebar3 dialyzer - name: Proper Tests run: rebar3 as test do compile, proper --regressions # - name: Run Tests @@ -63,8 +63,8 @@ jobs: run: rebar3 compile - name: Xref Checks run: rebar3 xref - # - name: Dialyzer - # run: rebar3 dialyzer + - name: Dialyzer + run: rebar3 dialyzer - name: Compile Tests run: rebar3 as test compile - name: Proper Tests diff --git a/rebar.config b/rebar.config index 983e22f..4a0dcb7 100644 --- a/rebar.config +++ b/rebar.config @@ -42,8 +42,8 @@ ]}, {check, [ compile, - %%xref, - %%dialyzer, + xref, + dialyzer, ltest, coverage ]} diff --git a/src/dirs-common.lfe b/src/dirs-common.lfe index 415bb25..3eed58b 100644 --- a/src/dirs-common.lfe +++ b/src/dirs-common.lfe @@ -1,7 +1,8 @@ (defmodule dirs-common (export (abs-path? 1) - (home 0))) + (home 0) + (home-subdir 1))) (defun abs-path? ((`(#\/ . ,_)) 'true)