Skip to content

Commit bd8806c

Browse files
Move minimum_otp_vsn and CI to 24+
1 parent 00df5b4 commit bd8806c

File tree

2 files changed

+4
-17
lines changed

2 files changed

+4
-17
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -16,20 +16,9 @@ jobs:
1616
strategy:
1717
fail-fast: false
1818
matrix:
19-
include:
20-
- otp_version: 25
21-
os: ubuntu-22.04
22-
rebar3_version: 3.22
23-
latest: true
24-
- otp_version: 24
25-
os: ubuntu-22.04
26-
rebar3_version: 3.22
27-
- otp_version: 23
28-
os: ubuntu-20.04
29-
rebar3_version: 3.18
30-
- otp_version: 22
31-
os: ubuntu-20.04
32-
rebar3_version: 3.18
19+
otp_version: [24, 25]
20+
os: [ubuntu-22.04]
21+
rebar3_version: [3.22]
3322

3423
steps:
3524
- uses: actions/checkout@v4
@@ -62,8 +51,6 @@ jobs:
6251

6352
- name: Compile
6453
run: rebar3 compile
65-
- name: Lint
66-
run: if [[ "${{ matrix.latest }}" == "true" ]]; then rebar3 lint; fi
6754
- name: EUnit tests
6855
run: rebar3 eunit
6956
- name: Dialyzer

rebar.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{erl_first_files, ["src/elli_handler.erl"]}.
22
{erl_opts, [debug_info,
33
{i, "include"}]}.
4-
{minimum_otp_vsn, "22.0"}.
4+
{minimum_otp_vsn, "24"}.
55
{deps, []}.
66
{xref_checks, [undefined_function_calls,locals_not_used]}.
77
{profiles, [

0 commit comments

Comments
 (0)