Skip to content

Commit

Permalink
Enabled more checks.
Browse files Browse the repository at this point in the history
  • Loading branch information
oubiwann committed Nov 27, 2023
1 parent 74e863f commit be58a16
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions rebar.config
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@
]},
{check, [
compile,
%%xref,
%%dialyzer,
xref,
dialyzer,
ltest,
coverage
]}
Expand Down
3 changes: 2 additions & 1 deletion src/dirs-common.lfe
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
(defmodule dirs-common
(export
(abs-path? 1)
(home 0)))
(home 0)
(home-subdir 1)))

(defun abs-path?
((`(#\/ . ,_)) 'true)
Expand Down

0 comments on commit be58a16

Please sign in to comment.