Skip to content

Commit

Permalink
use the venv in the workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinschaper committed Nov 12, 2024
1 parent 97a094b commit fa5004e
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,17 @@ jobs:
- name: make venv with uv
run: |
uv venv
- name: Install dependencies
uv venv
- name: Activate venv and Install dependencies
run: |
source venv/bin/activate
uv pip install -r requirements.txt
- name: Run Jupyter Notebook
run: |
uv jupyter nbconvert --to notebook --execute omim_vs_orphanet_comparison.ipynb --output omim_vs_orphanet_comparison_output.ipynb
source venv/bin/activate
jupyter nbconvert --to notebook --execute omim_vs_orphanet_comparison.ipynb --output omim_vs_orphanet_comparison_output.ipynb
- name: Get Date for Release Tag
run: echo "DATE=$(date +%Y-%m-%d)" >> $GITHUB_ENV
Expand Down

0 comments on commit fa5004e

Please sign in to comment.