diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e7d53ca..a3e84d7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,11 +16,11 @@ jobs: matrix: include: - pair: - elixir: 1.15.x - otp: 24.x + elixir: "1.15" + otp: "24" - pair: - elixir: 1.17.x - otp: 27.x + elixir: "1.18" + otp: "27" lint: lint steps: - uses: actions/checkout@v4 diff --git a/test/nimble_csv_test.exs b/test/nimble_csv_test.exs index 957b875..f6485ff 100644 --- a/test/nimble_csv_test.exs +++ b/test/nimble_csv_test.exs @@ -393,7 +393,10 @@ defmodule NimbleCSVTest do """ assert IO.iodata_to_binary( - CSVWithUnknownSeparator.dump_to_iodata([["name", "age"], ["john \"nick\" doe", 27]]) + CSVWithUnknownSeparator.dump_to_iodata([ + ["name", "age"], + ["john \"nick\" doe", 27] + ]) ) == """ name,age "john ""nick"" doe",27