Skip to content

Commit

Permalink
Update specimin_evaluation_CI.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
NiharikaJamble authored Jul 25, 2024
1 parent 288d00b commit 59d9e07
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/specimin_evaluation_CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v2
with:
ref: main
ref: ${{ github.event.pull_request.head.ref }}
fetch-depth: 0

- name: Set up Python
Expand All @@ -43,7 +43,12 @@ jobs:
- name: Display CSV File Contents loaded in working environment
run: |
set -ex
cat /home/runner/work/specimin/specimin/CI_repository_list.csv
if [ -f /home/runner/work/specimin/specimin/CI_repository_list.csv ]; then
cat /home/runner/work/specimin/specimin/CI_repository_list.csv
else
echo "File /home/runner/work/specimin/specimin/CI_repository_list.csv does not exist"
exit 1
fi
- name: Clone ASHE Project
run: |
Expand Down

0 comments on commit 59d9e07

Please sign in to comment.