Skip to content

Commit ab627de

Browse files
Update the system to work with OTP25's typer_core (#65)
* update- Update the system to work with OTP25's typer_core * update- Also update plugins
1 parent fa636b1 commit ab627de

File tree

3 files changed

+9
-1081
lines changed

3 files changed

+9
-1081
lines changed

.github/workflows/ci.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
runs-on: ubuntu-20.04
1616
strategy:
1717
matrix:
18-
otp: [23.3, 24.3]
19-
rebar: [3.20.0]
18+
otp: [25]
19+
rebar: [3.24]
2020
steps:
21-
- uses: actions/checkout@v2
21+
- uses: actions/checkout@v4
2222
- uses: erlef/setup-beam@v1
2323
with:
2424
otp-version: ${{matrix.otp}}
@@ -33,10 +33,10 @@ jobs:
3333
runs-on: windows-latest
3434
strategy:
3535
matrix:
36-
otp: [23.3, 24.3]
37-
rebar: [3.20.0]
36+
otp: [25]
37+
rebar: [3.24]
3838
steps:
39-
- uses: actions/checkout@v2
39+
- uses: actions/checkout@v4
4040
- uses: erlef/setup-beam@v1
4141
with:
4242
otp-version: ${{matrix.otp}}

rebar.config

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,16 @@
99

1010
{deps, []}.
1111

12-
{minimum_otp_vsn, "23"}.
12+
{minimum_otp_vsn, "25"}.
1313

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

1717
{project_plugins,
1818
[{rebar3_hex, "~> 7.0.8"},
1919
{rebar3_format, "~> 1.3.0"},
20-
{rebar3_lint, "~> 3.2.5"},
21-
{rebar3_hank, "~> 1.4.0"}]}.
20+
{rebar3_lint, "~> 3.2.6"},
21+
{rebar3_hank, "~> 1.4.1"}]}.
2222

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

0 commit comments

Comments
 (0)