Skip to content

Commit

Permalink
CI/CD tweaks.
Browse files Browse the repository at this point in the history
  • Loading branch information
oubiwann committed Jul 6, 2023
1 parent 7e6388d commit 52f7189
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- name: Dialyzer
run: rebar3 dialyzer
- name: Proper Tests
run: rebar3 proper --regressions
run: rebar3 as test do compile, proper --regressions
- name: Run Tests
run: rebar3 ct -c
- name: Run Unit Tests
Expand Down Expand Up @@ -61,8 +61,10 @@ jobs:
run: rebar3 xref
- name: Dialyzer
run: rebar3 dialyzer
- name: Compile Tests
run: rebar3 as test compile
- name: Proper Tests
run: rebar3 proper --regressions
run: rebar3 as test proper --regressions
- name: Run Tests
run: rebar3 ct -c
- name: Run Unit Tests
Expand Down
8 changes: 4 additions & 4 deletions rebar.config
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@
{profiles, [
{test, [
{deps, [
{proper, "1.3.0"}
{proper, "1.4.0"}
]},
{plugins, [
{rebar3_proper, "0.12.0"}
{rebar3_proper, "0.12.1"}
]},
{eunit_opts, [verbose]},
{erl_opts, [{src_dirs, ["src", "test"]}]}
Expand All @@ -38,8 +38,8 @@
]},
{check, [
compile,
%%xref,
%%dialyzer,
xref,
dialyzer,
eunit,
coverage
]}
Expand Down

0 comments on commit 52f7189

Please sign in to comment.