Skip to content

Commit

Permalink
unify path
Browse files Browse the repository at this point in the history
  • Loading branch information
MAfarrag committed Dec 7, 2024
1 parent ae7ba9d commit ed5126b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/jupyter-notebooks-examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: test-jupyter-notebooks
on:
workflow_call:
inputs:
python-version:
environment-path:
description: 'Path to the Conda environment'
required: true
type: string
Expand All @@ -13,16 +13,16 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ inputs.python-version }}
- name: Set up Python ${{ inputs.environment-path }}
uses: actions/setup-python@v4
with:
python-version: ${{ inputs.python-version }}
python-version: ${{ inputs.environment-path }}

- name: Restore Cached Dependencies
uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-cache-${{ inputs.python-version }}
key: ${{ runner.os }}-pip-cache-${{ inputs.environment-path }}
restore-keys: |
${{ runner.os }}-pip-cache-
Expand Down

0 comments on commit ed5126b

Please sign in to comment.