Skip to content

Commit

Permalink
Update test-model-source.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
GemmaTuron authored Feb 24, 2025
1 parent 7be7f2d commit 70e7f73
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions .github/workflows/test-model-source.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,13 +87,15 @@ jobs:
env:
MODEL_ID: ${{ github.event.repository.name }}
run: |
conda run -n base ersilia -v fetch $MODEL_ID --from_github
conda run -n base ersilia serve $MODEL_ID
conda run -n base ersilia example -f input.csv -n 3
conda run -n base ersilia run -i input.csv -o output.csv
conda run -n base ersilia close
conda run -n base ersilia delete $MODEL_ID
conda run -n base head output.csv
conda run -n base bash -c "
ersilia -v fetch $MODEL_ID --from_github &&
ersilia serve $MODEL_ID &&
ersilia example -f input.csv -n 3 &&
ersilia run -i input.csv -o output.csv &&
ersilia close &&
ersilia delete $MODEL_ID &&
head output.csv
"
# TODO(@dhanshree) We can potentially restore the retries.
# - name: Test model
Expand Down

0 comments on commit 70e7f73

Please sign in to comment.