From c1457b7d3d1935d7d5fdf18d85f36b2ddc8548fd Mon Sep 17 00:00:00 2001 From: Pavel Tsiukhtsiayeu Date: Tue, 10 Jun 2025 12:54:52 -0400 Subject: [PATCH] CI image updated. Added Elixir 1.18 to a testing matrix --- .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 91ed19e..8aee49d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,19 +14,19 @@ permissions: jobs: unit_tests: name: Unit tests Elixir ${{matrix.elixir}} / OTP ${{matrix.otp}} - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest strategy: matrix: include: + - elixir: "1.18" + otp: "27" - elixir: "1.16" otp: "26" - elixir: "1.15" otp: "26" - elixir: "1.14" otp: "25" - - elixir: "1.13" - otp: "24" steps: - name: Checkout