Skip to content

Commit

Permalink
Only use the root pipfile as cache
Browse files Browse the repository at this point in the history
  • Loading branch information
dinhlongviolin1 committed May 30, 2024
1 parent 50ddcc6 commit f1c854d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/actions/install/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ runs:
with:
python-version: ${{ inputs.python-version }}
cache: 'pipenv'
cache-dependency-path: '**/Pipfile'
cache-dependency-path: 'Pipfile'

- name: Install pipenv
run: pip install pipenv --upgrade
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/partial-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
with:
python-version: ${{matrix.python-version}}
cache: 'pipenv'
cache-dependency-path: '**/Pipfile'
cache-dependency-path: 'Pipfile'
- name: Install Setuptools and wheel
run: pip install --upgrade setuptools wheel

Expand Down Expand Up @@ -141,7 +141,7 @@ jobs:
with:
python-version: ${{matrix.python-version}}
cache: 'pipenv'
cache-dependency-path: '**/Pipfile'
cache-dependency-path: 'Pipfile'

- name: Install pipenv
if: steps.changes.outputs.core == 'true'
Expand Down Expand Up @@ -184,7 +184,7 @@ jobs:
with:
python-version: ${{matrix.python-version}}
cache: 'pipenv'
cache-dependency-path: '**/Pipfile'
cache-dependency-path: 'Pipfile'

- name: Install pipenv
if: steps.changes.outputs.core == 'true'
Expand Down

0 comments on commit f1c854d

Please sign in to comment.