Skip to content
This repository has been archived by the owner on Jan 10, 2024. It is now read-only.

Commit

Permalink
feat: new framwork support added
Browse files Browse the repository at this point in the history
Signed-off-by: Animesh <[email protected]>
  • Loading branch information
Sonichigo committed Oct 17, 2023
1 parent 2471777 commit cef7fdf
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,18 @@ runs:
echo "$(find /${GITHUB_WORKSPACE}/${WORKDIR}/keploy/ -type d -name 'test-set-*' | wc -l)" > ${GITHUB_WORKSPACE}/${WORKDIR}/testSets.yml
cd ${GITHUB_WORKSPACE}/${WORKDIR}/keploy/testReports
ls
echo "${GITHUB_WORKSPACE}/${WORKDIR}/keploy/testReports/report-1.yml" >> $GITHUB_OUTPUT
echo "${GITHUB_WORKSPACE}/${WORKDIR}/keploy/testReports/report-*.yml"
cat ${GITHUB_WORKSPACE}/${WORKDIR}/keploy/testReports/report-1.yaml
cat ${GITHUB_WORKSPACE}/${WORKDIR}/keploy/testReports/report-1.yaml >> $GITHUB_OUTPUT
echo "$(find "$@" -type f | wc -l)" > ${GITHUB_WORKSPACE}/${WORKDIR}/testReports.yml
cat ${GITHUB_WORKSPACE}/${WORKDIR}/testSets.yml
cat ${GITHUB_WORKSPACE}/${WORKDIR}/testReports.yml
for i in testReports.yml
do
echo "Processing $i report.yaml file..."
echo "${GITHUB_WORKSPACE}/${WORKDIR}/keploy/testReports/report-i.yaml"
cat $i
done
shell: sh
env:
WORKDIR: ${{ inputs.working-directory }}
Expand Down

0 comments on commit cef7fdf

Please sign in to comment.