From b12a75ff1678de77993806e6ceb4177c76cd28ab Mon Sep 17 00:00:00 2001 From: Luca Succi Date: Fri, 30 Aug 2024 15:58:08 +0000 Subject: [PATCH] Update ci.yml (#84) * Use selected rebar3 versions for otp 23 and 24 * use ubuntu version compatible with OTP 23 --- .github/workflows/ci.yml | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4fd4a95..77bf4b2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,16 +7,18 @@ on: jobs: ci: - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 name: Erlang ${{matrix.otp}} / rebar ${{matrix.rebar3}} strategy: matrix: - otp: - - '26' - - '25' - - '24' - rebar3: - - '3' + otp: ['25', '26', '27'] + rebar3: ['3'] + # latest rebar3 versions that do not give problems with selected OTPs + include: + - otp: '23' + rebar3: '3.20.0' + - otp: '24' + rebar3: '3.23.0' steps: - uses: actions/checkout@v2