Skip to content

Commit

Permalink
Bump Elixir to 1.16 in CI (#352)
Browse files Browse the repository at this point in the history
  • Loading branch information
whatyouhide committed Dec 23, 2023
1 parent a21d162 commit b45e829
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 5 deletions.
17 changes: 13 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ jobs:
- name: Install OTP and Elixir
uses: erlef/setup-beam@v1
with:
otp-version: "25.3"
elixir-version: "1.15.4"
otp-version: "26.2"
elixir-version: "1.16"

- name: Cache dependencies
id: cache-deps
Expand Down Expand Up @@ -89,14 +89,23 @@ jobs:
otp:
- "25.3"
elixir:
- "1.15.4"
- "1.16"
server_versions:
- cassandra: "3"
scylla: "4.6.3"

include:
- otp: "26.2"
elixir: "1.16"
coverage: true
server_versions:
cassandra: "4.1"
scylla: "5.2"

# Oldest-supported Elixir and Erlang versions.
- otp: "25.3"
elixir: "1.15.4"
coverage: true
coverage: false
server_versions:
cassandra: "4.1"
scylla: "5.2"
Expand Down
1 change: 0 additions & 1 deletion lib/xandra/frame.ex
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,6 @@ defmodule Xandra.Frame do
response_version: response_vsn
}} <- @supported_protocols do
defp protocol_module_to_request_version(unquote(protocol_mod)), do: unquote(request_vsn)
defp protocol_module_to_response_version(unquote(protocol_mod)), do: unquote(response_vsn)
defp byte_version_to_protocol_version(unquote(request_vsn)), do: unquote(vsn)
defp byte_version_to_protocol_version(unquote(response_vsn)), do: unquote(vsn)
end
Expand Down

0 comments on commit b45e829

Please sign in to comment.