neiam /action-setup-beam
action-setup-beam
public · Issues · Pulls · Labels · Forks · Compare · Actions queued
⭐
Log in to mark this repository.
Aim for warningless (and more complete) test coverage on rebar3 and mix (#25)
46b1995 · Paulo F. Oliveira · 2021-03-31 17:52
Files changed
modified
test-projects/mix/mix.exs
+2
−1
@@ -21,7 +21,8 @@ defmodule Test.MixProject do
| 21 | 21 | # Run "mix help deps" to learn about dependencies. |
| 22 | 22 | defp deps do |
| 23 | 23 | [ |
| 24 | − {:logfmt, "~> 3.3"} | |
| 24 | + {:logfmt, "~> 3.3"}, | |
| 25 | + {:verl, "~> 1.0"} | |
| 25 | 26 | # {:dep_from_hexpm, "~> 0.3.0"}, |
| 26 | 27 | # {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"} |
| 27 | 28 | ] |
modified
test-projects/mix/mix.lock
+2
−1
@@ -1,3 +1,4 @@
| 1 | 1 | %{ |
| 2 | − "logfmt": {:hex, :logfmt, "3.3.0", "f863e19b9cac952f177f878074ec9304bb132eb9034306e75216dee88ca744d9", [:mix], [], "hexpm"}, | |
| 2 | + "logfmt": {:hex, :logfmt, "3.3.1", "d9eaf344f81f4b4a6f2a1c73d79cb9cb4c4ff1d7c878d7a1bf3cb92761f653db", [:mix], [], "hexpm", "5030c9dafe1ef85e416cc867cd8db836de512c54047735c7a3e7be0ba67a532e"}, | |
| 3 | + "verl": {:hex, :verl, "1.0.3", "22d1add283196ba2c453a848a6b99122412e4d16dfda690846a55bdd3fbfe594", [:rebar3], [], "hexpm", "dffd8a778c21c98dd4270930f321dc47ec783707fb2d42bd81c9955811af89f1"}, | |
| 3 | 4 | } |
modified
test-projects/rebar3/rebar.config
+1
−1
@@ -1,5 +1,5 @@
| 1 | 1 | {erl_opts, [debug_info]}. |
| 2 | −{deps, []}. | |
| 2 | +{deps, [{verl, "1.0.0"}]}. | |
| 3 | 3 | {xref_checks, [ |
| 4 | 4 | deprecated_function_calls, |
| 5 | 5 | exports_not_used, |
added
test-projects/rebar3/rebar.lock
+8
−0
@@ -0,0 +1,8 @@
| 1 | +{"1.2.0", | |
| 2 | +[{<<"verl">>,{pkg,<<"verl">>,<<"1.0.0">>},0}]}. | |
| 3 | +[ | |
| 4 | +{pkg_hash,[ | |
| 5 | + {<<"verl">>, <<"8C8738AE6826414D32A28EDF4995F275362E8677E7A3F37D99AC8152B5E041FD">>}]}, | |
| 6 | +{pkg_hash_ext,[ | |
| 7 | + {<<"verl">>, <<"35900D79F4BE7B5A855849B7D00EF4A25844BF3A998EF3E1FDB34B1B601CB108">>}]} | |
| 8 | +]. |
Parents: 0b48181