Skip to content

Commit

Permalink
ready for pr
Browse files Browse the repository at this point in the history
  • Loading branch information
ShawnXuan committed Nov 10, 2023
1 parent 66e4a96 commit 505ea01
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,11 @@ jobs:
- name: Prepare test directory
run: |
model_dir='${{ env.CO_MODELS_SRC }}/cv/classification/${{ env.MODEL_ARCH }}'
cp -rL $model_dir ${{ env.TEST_DIR }}
if [ -d "$model_dir" ]; then
cp -rL "$model_dir" "${{ env.TEST_DIR }}"
else
exit 0
fi
- name: Prepare Container
run: |
docker rm -f ${{ env.TEST_CONTAINER_NAME }} || true
Expand Down

0 comments on commit 505ea01

Please sign in to comment.