Skip to content

Commit 2b4a5e0

Browse files
authored
Support Elixir 1.18 in CI (#84)
List of changes: - bump max supported Elixir version to 1.18 - code format - specify versions as strings, not numbers
1 parent 020ea82 commit 2b4a5e0

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ jobs:
1616
matrix:
1717
include:
1818
- pair:
19-
elixir: 1.15.x
20-
otp: 24.x
19+
elixir: "1.15"
20+
otp: "24"
2121
- pair:
22-
elixir: 1.17.x
23-
otp: 27.x
22+
elixir: "1.18"
23+
otp: "27"
2424
lint: lint
2525
steps:
2626
- uses: actions/checkout@v4

test/nimble_csv_test.exs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -393,7 +393,10 @@ defmodule NimbleCSVTest do
393393
"""
394394

395395
assert IO.iodata_to_binary(
396-
CSVWithUnknownSeparator.dump_to_iodata([["name", "age"], ["john \"nick\" doe", 27]])
396+
CSVWithUnknownSeparator.dump_to_iodata([
397+
["name", "age"],
398+
["john \"nick\" doe", 27]
399+
])
397400
) == """
398401
name,age
399402
"john ""nick"" doe",27

0 commit comments

Comments
 (0)