Skip to content

Commit

Permalink
Update the system to work with OTP25's typer_core (#65)
Browse files Browse the repository at this point in the history
* update- Update the system to work with OTP25's typer_core

* update- Also update plugins
  • Loading branch information
elbrujohalcon authored Oct 30, 2024
1 parent fa636b1 commit ab627de
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1,081 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:
runs-on: ubuntu-20.04
strategy:
matrix:
otp: [23.3, 24.3]
rebar: [3.20.0]
otp: [25]
rebar: [3.24]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.otp}}
Expand All @@ -33,10 +33,10 @@ jobs:
runs-on: windows-latest
strategy:
matrix:
otp: [23.3, 24.3]
rebar: [3.20.0]
otp: [25]
rebar: [3.24]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.otp}}
Expand Down
6 changes: 3 additions & 3 deletions rebar.config
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,16 @@

{deps, []}.

{minimum_otp_vsn, "23"}.
{minimum_otp_vsn, "25"}.

{profiles,
[{test, [{deps, [{meck, "~> 0.9.2"}]}, {dialyzer, [{plt_extra_apps, [common_test]}]}]}]}.

{project_plugins,
[{rebar3_hex, "~> 7.0.8"},
{rebar3_format, "~> 1.3.0"},
{rebar3_lint, "~> 3.2.5"},
{rebar3_hank, "~> 1.4.0"}]}.
{rebar3_lint, "~> 3.2.6"},
{rebar3_hank, "~> 1.4.1"}]}.

{dialyzer, [{warnings, [no_return, unmatched_returns, error_handling, underspecs]}]}.

Expand Down
Loading

0 comments on commit ab627de

Please sign in to comment.