We developed Blend a new hex package that solves the problem of testing your library against different version of its dependencies.
For example, an elixir package that depends on plug_crypto with a requirement of ~> 1.2 or ~> 2.0 , that wants to test against the two major versions, would normally have it’s mix.lock resolved to 2.x .
So there is no straightforward way of running your test locally and in the CI against 1.x and 2.x.
Blend tries to solve this. Inspired in a similar tool that exists in the ruby ecosystem called appraisal
You can create different blends and it will take care of you in generating alternative mix lockfiles and a simple way of running test against them.
Do you support different Erlang and Elixir versions as well? (asdf support for example)
Does it only tests code or can it also detect if current project compiles with or without warnings?
By using your package can I detect minimum supported package version and also minimum supported package version excluding soft-deprecate warnings?
I guess that the answer for all is no, but I may be wrong. Anyway, do you think about those points? Are they interesting features to add to your hex package?