We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 63179bc commit ade3c8bCopy full SHA for ade3c8b
1 file changed
action.yaml
@@ -80,14 +80,20 @@ runs:
80
81
cd "$GITHUB_ACTION_PATH"
82
83
+ if [[ ! "${{ inputs.cwd }}" = /* ]]; then
84
+ ARGS_CWD="$GITHUB_WORKSPACE/${{ inputs.cwd }}"
85
+ else
86
+ ARGS_CWD="${{ inputs.cwd }}"
87
+ fi
88
+
89
ARGS=(
90
--executable="${{ inputs.executable }}"
91
--strictness="${{ inputs.strictness }}"
92
--max-num-tests="${{ inputs.max_num_tests }}"
93
--reference-source="${{ inputs.reference_source }}"
94
--num-threads="${{ inputs.num_threads }}"
95
--allow-extra-iterations="${{ inputs.allow_extra_iterations }}"
- --cwd="${{ inputs.cwd }}"
96
+ --cwd="$ARGS_CWD"
97
)
98
99
if [ "${{ inputs.valgrind }}" = "true" ]; then
0 commit comments