From 0ee5fb7078dd9981b7bdca443cdaccf7d924f26a Mon Sep 17 00:00:00 2001 From: David Anthoff Date: Fri, 22 Nov 2019 20:13:00 -0800 Subject: [PATCH] Run dependencies on Github Actions --- test/runtests.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/runtests.jl b/test/runtests.jl index b26fb406f..19aba6f46 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -101,7 +101,7 @@ Electron.prep_test_env() include("mcs/runtests.jl") - if get(ENV, "MIMI_RUN_DEPENDENCY_TESTS", "")=="TRUE" + if haskey(ENV, "GITHUB_ACTIONS") && ENV["GITHUB_ACTIONS"] == "true" run(`$(Base.julia_cmd()) --startup-file=no --project=$(joinpath(@__DIR__, "dependencies", ".")) $(joinpath(@__DIR__, "dependencies", "run_dependency_tests.jl"))`) end end