From 290bec0a5d689465e2fe4d70acc7987ae6f23646 Mon Sep 17 00:00:00 2001 From: Mateusz Jakub Fila Date: Fri, 16 Aug 2024 16:09:53 +0200 Subject: [PATCH] avoid potential clashes with julia args Co-authored-by: Markus Hauru --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 7749e35..591bc8d 100644 --- a/action.yml +++ b/action.yml @@ -60,7 +60,7 @@ runs: if: inputs.annotate == 'true' - run: | # The Julia command that will be executed - julia_cmd=( julia --color=yes --depwarn=${{ inputs.depwarn }} --inline=${{ inputs.inline }} --project=${{ inputs.project }} -e 'include(joinpath(ENV["GITHUB_ACTION_PATH"], "test_harness.jl"))' ${{inputs.test_args}} ) + julia_cmd=( julia --color=yes --depwarn=${{ inputs.depwarn }} --inline=${{ inputs.inline }} --project=${{ inputs.project }} -e 'include(joinpath(ENV["GITHUB_ACTION_PATH"], "test_harness.jl"))' -- ${{inputs.test_args}} ) # Add the prefix in front of the command if there is one prefix=( ${{ inputs.prefix }} )