Skip to content

Commit 3e54bf3

Browse files
committed
Test on OTP19-Ubuntu-20.04
1 parent 955861b commit 3e54bf3

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,19 @@ jobs:
99
strategy:
1010
fail-fast: false
1111
matrix:
12+
os: ['ubuntu-24.04']
1213
otp: ['20', '21', '22', '23', '24', '25', '26', '27']
13-
runs-on: ubuntu-24.04
14+
include:
15+
- otp: '19'
16+
os: 'ubuntu-20.04'
17+
runs-on: ${{matrix.os}}
1418
container:
1519
image: erlang:${{ matrix.otp }}
1620
steps:
21+
- uses: actions/checkout@v1
22+
if: matrix.otp == '19'
1723
- uses: actions/checkout@v4
24+
if: matrix.otp != '19'
1825
- run: rebar3 compile
1926
- run: rebar3 xref
2027
- run: rebar3 dialyzer

0 commit comments

Comments
 (0)