From 7975fbecbaced122b79b7e66b06a9d133d7de184 Mon Sep 17 00:00:00 2001 From: Philipp Tessenow Date: Tue, 18 Jun 2024 12:50:35 +0200 Subject: [PATCH] exclude older elixir versions from the most recent erlang release in compatibility tests --- .github/workflows/compatibility-elixir.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/compatibility-elixir.yml b/.github/workflows/compatibility-elixir.yml index 0cfaf747..845ccab5 100644 --- a/.github/workflows/compatibility-elixir.yml +++ b/.github/workflows/compatibility-elixir.yml @@ -19,9 +19,11 @@ jobs: matrix: otp: [25.2, 26.2, 27.0] elixir: [1.15.6, 1.16.1, 1.17.0] - # exclude: - # - otp: 26.2 - # elixir: 1.13.4 + exclude: + - otp: 27.0 + elixir: 1.15.6 + - otp: 27.0 + elixir: 1.16.1 steps: - uses: actions/checkout@v3 - uses: erlef/setup-beam@v1