From f4088da09632e6a7c4969f1c9e1c8016d7450de8 Mon Sep 17 00:00:00 2001 From: Darwin D Wu Date: Sat, 25 Nov 2023 13:24:16 -0800 Subject: [PATCH] update versions --- .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 dc72a6e..8a098c7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,12 +14,14 @@ permissions: jobs: test: - name: Test + name: Test (Elixir ${{ matrix.elixir }} / OTP ${{ matrix.otp }}) runs-on: ubuntu-latest strategy: matrix: - elixir: [1.13, 1.14, 1.15] - otp: [24.3, 25.3, 26.1] + # NOTE: best effort coverage + # https://hexdocs.pm/elixir/compatibility-and-deprecations.html#compatibility-between-elixir-and-erlang-otp + elixir: ["1.14", "1.15"] + otp: ["24.3", "25.3"] steps: - uses: actions/checkout@v3