commit d8a26169fb2b8e3d1f6785a19cd7d191e3e8b62d parent 14ea449b6e90da5594261c7eda7efc135ee61982 Author: Anders Damsgaard <andersd@riseup.net> Date: Sun, 12 Nov 2017 11:56:44 -0500 add script to run Julia 0.6 and 0.7 tests in one command Diffstat:
A | Makefile | | | 7 | +++++++ |
1 file changed, 7 insertions(+), 0 deletions(-)
diff --git a/Makefile b/Makefile @@ -0,0 +1,7 @@ +test: test-julia-0.6 test-julia-0.7 + +test-julia-0.6: + julia --color=yes -e 'Pkg.test("Granular")' + +test-julia-0.7: + julia-0.7 --color=yes -e 'Pkg.test("Granular")'