Suppose I have packages A and B, where B depends on A. I push an update to A, which might break B. Now I want to test B against my PR to A automatically, possibly by including the test in the CI run (using GitHub actions). Is this possible? If it is, how do I implement this?
Specifically, I would like to test SpecialPolynomials.jl
against PRs to Polynomials.jl
, to make sure that a PR doesn’t break SpecialPolynomials.jl
.