Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
matrix:
platform: [ubuntu-latest]
otp-version: [24]
otp-version: [25]
runs-on: ${{ matrix.platform }}
container:
image: erlang:${{ matrix.otp-version }}
Expand Down Expand Up @@ -43,4 +43,4 @@ jobs:
run: rebar3 do dialyzer, xref
- name: Produce Documentation
run: rebar3 edoc
if: ${{ matrix.otp-version == '24' }}
if: ${{ matrix.otp-version == '25' }}
16 changes: 15 additions & 1 deletion rebar.config
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,21 @@
]
}.

{deps, []}.
{deps, [
{eqwalizer_support,
{git_subdir,
"https://github.com/whatsapp/eqwalizer.git",
{branch, "main"},
"eqwalizer_support"}}
]}.

{project_plugins, [
{eqwalizer_rebar3,
{git_subdir,
"https://github.com/whatsapp/eqwalizer.git",
{branch, "main"},
"eqwalizer_rebar3"}}
]}.

{dialyzer, [ {warnings, [unknown]}
, {plt_apps, all_deps}
Expand Down
6 changes: 5 additions & 1 deletion rebar.lock
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
[].
[{<<"eqwalizer_support">>,
{git_subdir,"https://github.com/whatsapp/eqwalizer.git",
{ref,"c3c3b284110dcacc0d2a3cb73875d5b5341b8dc2"},
"eqwalizer_support"},
0}].
3 changes: 2 additions & 1 deletion src/wa_raft.app.src
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@
%% NOTE: No more dependency is expected for this app
{applications, [
kernel,
stdlib
stdlib,
eqwalizer_support
]},
{env, []},
{mod, {wa_raft_app, []}}
Expand Down