From 321c12b9cca7bc21e58c955515e131674af1259c Mon Sep 17 00:00:00 2001 From: Jesse Herrick Date: Tue, 10 Jun 2025 21:16:44 -0400 Subject: [PATCH 1/3] Add Elixir 1.19.0-rc.0 to CI --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a2391e3..3c44e5d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,7 +9,7 @@ jobs: name: Ex${{matrix.elixir}}/OTP${{matrix.otp}} strategy: matrix: - elixir: ["1.15.8", "1.16.3", "1.17.3", "1.18.2"] + elixir: ["1.15.8", "1.16.3", "1.17.3", "1.18.2", "1.19.0-rc.0"] otp: ["25.3.2", "26.2.5", "27.2.4"] exclude: - elixir: "1.15.8" From 844055031661494360cffd49523a7ecd200fd57f Mon Sep 17 00:00:00 2001 From: Jesse Herrick Date: Tue, 10 Jun 2025 21:19:24 -0400 Subject: [PATCH 2/3] Use most recent Elixir + Erlang versions only --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3c44e5d..bffe6e3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,8 +9,8 @@ jobs: name: Ex${{matrix.elixir}}/OTP${{matrix.otp}} strategy: matrix: - elixir: ["1.15.8", "1.16.3", "1.17.3", "1.18.2", "1.19.0-rc.0"] - otp: ["25.3.2", "26.2.5", "27.2.4"] + elixir: ["1.18.4", "1.19.0-rc.0"] + otp: ["27.3.4", "28.0"] exclude: - elixir: "1.15.8" otp: "27.2.4" From df64f207e29e1f22ac7236e40cd1fed2a1e9f47b Mon Sep 17 00:00:00 2001 From: Jesse Herrick Date: Tue, 10 Jun 2025 21:21:43 -0400 Subject: [PATCH 3/3] Comment out excludes and use full Erlang version --- .github/workflows/ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bffe6e3..0fd3f45 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,12 +10,12 @@ jobs: strategy: matrix: elixir: ["1.18.4", "1.19.0-rc.0"] - otp: ["27.3.4", "28.0"] - exclude: - - elixir: "1.15.8" - otp: "27.2.4" - - elixir: "1.16.3" - otp: "27.2.4" + otp: ["27.3.4", "28.0.0"] + # exclude: + # - elixir: "1.18.4" + # otp: "28.0.0" + # - elixir: "1.16.3" + # otp: "27.2.4" steps: - uses: actions/checkout@v4 - uses: erlef/setup-beam@v1