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

Commit

Permalink
build:fix bm test vs result
Browse files Browse the repository at this point in the history
  • Loading branch information
YNYuan committed Feb 23, 2024
1 parent be25008 commit 8217729
Showing 1 changed file with 13 additions and 6 deletions.
19 changes: 13 additions & 6 deletions .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,18 +23,25 @@ jobs:
run: |
apt update && apt install -y wget unzip
pip install -r scripts/requirements.txt
- name: Run benchmarks
- name: Run molecular docking benchmarks
run: |
cd scripts
python3 test_molecular_docking.py
python3 test_virtual_screening.py
- name: Upload docking results
uses: actions/upload-artifact@v4
with:
name: docking.csv
name: molecular_docking_results.csv
path: results/results.csv
- name: Upload screening results
- name: Upload docking metrics
uses: actions/upload-artifact@v4
with:
name: screening.csv
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
uses: actions/upload-artifact@v4
with:
name: virtual_screening_results.csv
path: results/results.csv

0 comments on commit 8217729

Please sign in to comment.