From 56d898f460550fd1b05721ae6f386a55061de1f7 Mon Sep 17 00:00:00 2001 From: Animesh Date: Tue, 17 Oct 2023 14:46:13 +0530 Subject: [PATCH] feat: new framwork support added Signed-off-by: Animesh --- action.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/action.yml b/action.yml index 52afdd6..63efb75 100644 --- a/action.yml +++ b/action.yml @@ -43,13 +43,13 @@ runs: name: Run Script run: | ${GITHUB_ACTION_PATH}/install.sh - ${GITHUB_ACTION_PATH}/install.sh >> ${GITHUB_WORKSPACE}/${WORKDIR}/TestReport.txt - sed -i 's/no of test cases: //g' ${GITHUB_WORKSPACE}/${WORKDIR}/TestReport.txt >> ${GITHUB_WORKSPACE}/${WORKDIR}/temp.yml + ${GITHUB_ACTION_PATH}/install.sh > ${GITHUB_WORKSPACE}/${WORKDIR}/TestReport.txt + sed -i 's/no of test cases: //g' ${GITHUB_WORKSPACE}/${WORKDIR}/TestReport.txt > ${GITHUB_WORKSPACE}/${WORKDIR}/temp.yml cd ${GITHUB_WORKSPACE}/${WORKDIR}/keploy/testReports + ls echo "No. of files is $(find "$@" -type f | wc -l)" echo "No. of Reports is $(find "$@" -type f | wc -l)" >> ${GITHUB_WORKSPACE}/${WORKDIR}/temp.yml cat ${GITHUB_WORKSPACE}/${WORKDIR}/temp.yml - cat ${GITHUB_WORKSPACE}/${WORKDIR}/TestReport.txt shell: sh env: WORKDIR: ${{ inputs.working-directory }}