Skip to content

Commit 77e14fc

Browse files
Add more dialyzer checks (#55)
* Add more dialyzer checks * Remove old OTP versions from CI
1 parent 896a7e2 commit 77e14fc

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/erlang.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313

1414
strategy:
1515
matrix:
16-
otp: ['23.3', '24.3', '25.2.1']
16+
otp: ['25.2.1']
1717
rebar: ['3.20.0']
1818

1919
steps:

rebar.config

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{erl_opts,
22
[warn_unused_import, warn_export_vars, warnings_as_errors, verbose, report, debug_info]}.
33

4-
{minimum_otp_vsn, "23"}.
4+
{minimum_otp_vsn, "25"}.
55

66
{cover_enabled, true}.
77

@@ -10,11 +10,11 @@
1010
{deps, [{jiffy, "1.1.1"}]}.
1111

1212
{dialyzer,
13-
[{warnings, [no_return, error_handling]},
13+
[{warnings, [unknown, no_return, error_handling, missing_return, extra_return]},
1414
{plt_apps, top_level_deps},
1515
{plt_extra_apps, []},
1616
{plt_location, local},
17-
{base_plt_apps, [erts, stdlib, kernel, inets, crypto, ssl]},
17+
{base_plt_apps, [erts, stdlib, kernel, inets, crypto, ssl, xmerl]},
1818
{base_plt_location, global}]}.
1919

2020
{xref_checks,

0 commit comments

Comments
 (0)