From e0027850bc036b00a4b3249e26050a9314e39fd6 Mon Sep 17 00:00:00 2001 From: Badlop Date: Thu, 23 May 2024 09:18:26 +0200 Subject: [PATCH] CI: Set OTP major version, and let it pick the latest minor one --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 723d8a0..2bc49a6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,15 +9,15 @@ jobs: strategy: fail-fast: false matrix: - otp: ['19.3', '25.3', 26, 27] + otp: [19, 20, 25, 26, 27] runs-on: ubuntu-22.04 container: image: erlang:${{ matrix.otp }} steps: - uses: actions/checkout@v3 - if: matrix.otp < '20.3' + if: matrix.otp < 20 - uses: actions/checkout@v4 - if: matrix.otp >= '20.3' + if: matrix.otp >= 20 - run: make - run: rebar3 compile - run: rebar3 xref