Skip to content

Commit 5a37fc0

Browse files
Use a more recent rebar3 in CI
1 parent c5c54c7 commit 5a37fc0

File tree

1 file changed

+14
-3
lines changed

1 file changed

+14
-3
lines changed

.github/workflows/main.yml

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,27 @@ jobs:
1515

1616
strategy:
1717
matrix:
18-
otp_version: ['24', '23', '22', '21']
19-
os: [ubuntu-20.04]
18+
include:
19+
- otp_version: 25
20+
os: ubuntu-22.04
21+
rebar3_version: 3.22
22+
- otp_version: 24
23+
os: ubuntu-22.04
24+
rebar3_version: 3.22
25+
- otp_version: 23
26+
os: ubuntu-20.04
27+
rebar3_version: 3.18
28+
- otp_version: 22
29+
os: ubuntu-20.04
30+
rebar3_version: 3.18
2031

2132
steps:
2233
- uses: actions/checkout@v2
2334

2435
- uses: erlef/setup-beam@v1
2536
with:
2637
otp-version: ${{ matrix.otp_version }}
27-
rebar3-version: '3.14'
38+
rebar3-version: ${{ matrix.rebar3_version }}
2839

2940
- name: Compile
3041
run: rebar3 compile

0 commit comments

Comments
 (0)