From 44a28696f81401a68b8b55639f96f2a5801942b0 Mon Sep 17 00:00:00 2001 From: Badlop Date: Fri, 29 Nov 2024 19:59:08 +0100 Subject: [PATCH] ci: Update to use ubuntu-24.04 --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fcda6db..615e88e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,18 +9,18 @@ jobs: strategy: fail-fast: false matrix: - otp: ['19.3', '21.3', 24] - runs-on: ubuntu-20.04 + otp: [20, 24, 25, 26, 27] + runs-on: ubuntu-24.04 container: image: erlang:${{ matrix.otp }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - run: rebar3 compile - run: rebar3 xref - run: rebar3 dialyzer - run: rebar3 eunit -v - name: Send to Coveralls - if: matrix.otp == 24 + if: matrix.otp == 26 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: |