From adc0f76a2d34423a8e69a6e2a3052876f8ec7ffe 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 +++--- mix.exs | 2 +- 2 files changed, 4 insertions(+), 4 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 diff --git a/mix.exs b/mix.exs index 14f107e..04fe0f3 100644 --- a/mix.exs +++ b/mix.exs @@ -9,7 +9,7 @@ defmodule OpenPGP.MixProject do [ app: :open_pgp, version: @version, - elixir: "~> 1.13", + elixir: "~> 1.14", build_embedded: Mix.env() == :prod, start_permanent: Mix.env() == :prod, description: @description,