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

Commit

Permalink
fix missing path for python scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
caic99 committed Feb 23, 2024
1 parent 8217729 commit d39eceb
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,10 @@ jobs:
run: |
apt update && apt install -y wget unzip
pip install -r scripts/requirements.txt
- name: Run molecular docking benchmarks
run: |
python3 test_molecular_docking.py
python3 scripts/test_molecular_docking.py
- name: Upload docking results
uses: actions/upload-artifact@v4
with:
Expand All @@ -36,11 +37,12 @@ jobs:
with:
name: molecular_docking_metrics.csv
path: results/metrics.csv

- name: Run virtual screening benchmarks
run: |
rm -rf results
python3 test_virtual_screening.py
- name: Upload vs results
python3 scripts/test_virtual_screening.py
- name: Upload virtual screening results
uses: actions/upload-artifact@v4
with:
name: virtual_screening_results.csv
Expand Down

0 comments on commit d39eceb

Please sign in to comment.