Skip to content

Commit 943b044

Browse files
Use a more recent rebar3 in CI
1 parent c5c54c7 commit 943b044

File tree

1 file changed

+16
-5
lines changed

1 file changed

+16
-5
lines changed

.github/workflows/main.yml

Lines changed: 16 additions & 5 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
@@ -38,7 +49,7 @@ jobs:
3849
- name: Covertool
3950
if: ${{ always() }}
4051
run: rebar3 covertool generate
41-
- uses: codecov/codecov-action@v1
52+
- uses: codecov/codecov-action@v4
4253
with:
43-
file: _build/test/covertool/elli.covertool.xml
54+
files: _build/test/covertool/elli.covertool.xml
4455
env_vars: OTP_VERSION

0 commit comments

Comments
 (0)