Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Elixir v1.10 to github actions #306

Merged
merged 3 commits into from
Feb 20, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,8 @@ jobs:
strategy:
matrix:
pair:
- erlang: 22.x
elixir: "1.10.1"
- erlang: 22.x
elixir: 1.9
- erlang: 22.x
Expand Down
2 changes: 1 addition & 1 deletion rustler_tests/test/env_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ defmodule RustlerTest.EnvTest do
receive do
# Collect the pids that the child processes send back.
{child_pid, {:hello, :world}} -> child_pid
_ -> raise :fail
_ -> raise "fail"
end
end

Expand Down
4 changes: 2 additions & 2 deletions rustler_tests/test/thread_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ defmodule RustlerTest.ThreadTest do
RustlerTest.threaded_sleep(200)

receive do
_ -> raise :timeout_expected
_ -> raise "timeout_expected"
after
100 ->
nil
Expand All @@ -23,7 +23,7 @@ defmodule RustlerTest.ThreadTest do
x -> assert x == 200
after
1000 ->
raise :message_expected
raise "message_expected"
end
end

Expand Down