From 020302acdac883bf930ffc6d7343ddac74f923aa Mon Sep 17 00:00:00 2001 From: Abdullah Esmail Date: Fri, 1 Sep 2023 16:20:58 +0300 Subject: [PATCH] limit CI to the last 3 releases of elixir and otp --- .github/workflows/ci.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ccf0334a..3e1b1e40 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,13 +13,15 @@ jobs: strategy: matrix: otp: ['24', '25', '26'] - elixir: ['1.11.4', '1.12.3', '1.13.4', '1.14.5', '1.15.5'] + elixir: ['1.13.4', '1.14.5', '1.15.5'] # Exclude invalid combinations of Elixir and OTP exclude: - otp: '25' - elixir: ['1.11.4', '1.12.3'] + elixir: '1.13.5' - otp: '26' - elixir: ['1.11.4', '1.12.3', '1.13.4', '1.14.5'] + elixir: '1.13.5' + - otp: '26' + elixir: '1.14.5' # Include the release candidate for the next Elixir, but don't # fail CI. # include: