Skip to content

Commit 24d39e2

Browse files
committed
CI: Set OTP major version, and let it pick the latest minor one
1 parent 1d4ac79 commit 24d39e2

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,22 +9,22 @@ jobs:
99
strategy:
1010
fail-fast: false
1111
matrix:
12-
otp: ['19.3', '21.3', 24]
12+
otp: [19, 20, 25, 26]
1313
runs-on: ubuntu-22.04
1414
container:
1515
image: erlang:${{ matrix.otp }}
1616
steps:
1717
- uses: actions/checkout@v3
18-
if: matrix.otp < '20.3'
18+
if: matrix.otp < 20
1919
- uses: actions/checkout@v4
20-
if: matrix.otp >= '20.3'
20+
if: matrix.otp >= 20
2121
- run: make
2222
- run: rebar3 compile
2323
- run: rebar3 xref
2424
- run: rebar3 dialyzer
2525
- run: rebar3 eunit -v
2626
- name: Send to Coveralls
27-
if: matrix.otp == 24
27+
if: matrix.otp == 26
2828
env:
2929
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3030
run: |

0 commit comments

Comments
 (0)