From cf3e2315421834914afd9a59707c3c2dde4f9fd1 Mon Sep 17 00:00:00 2001 From: Thomas Timmer Date: Wed, 24 Apr 2024 12:16:46 +0200 Subject: [PATCH] fix: exclude incompatible version in ci --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8fd7692..72dfcee 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,7 +7,10 @@ jobs: strategy: matrix: otp: ['24.3', '25.3', '26.2'] - elixir: ['1.13.2', '1.14.3', '1.15.7', '1.16.2'] + elixir: ['1.13.4', '1.14.5', '1.15.7', '1.16.2'] + exclude: + - otp: '26.2' + elixir: '1.13.4' steps: - uses: actions/checkout@v4 - uses: erlef/setup-beam@v1