Skip to content

Commit

Permalink
Update cache steps
Browse files Browse the repository at this point in the history
  • Loading branch information
ppouchin committed Apr 9, 2024
1 parent 5a07c80 commit 3ae46c3
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/planemo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ jobs:
uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
key: ${{ runner.os }}-pip-py${{ matrix.python-version }}
restore-keys: |
${{ runner.os }}-pip-
${{ runner.os }}-pip-py
- name: Install dependencies
run: pip install flake8 flake8-import-order planemo Pygments
- name: Check dependencies
Expand All @@ -46,16 +46,16 @@ jobs:
uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
key: ${{ runner.os }}-pip-py${{ matrix.python-version }}
restore-keys: |
${{ runner.os }}-pip-
- name: Cache Galaxy
${{ runner.os }}-pip-py
- name: Cache .planemo
uses: actions/cache@v4
with:
path: ~/.planemo/gx_repo
key: ${{ runner.os }}-gx_repo
path: ~/.planemo
key: ${{ runner.os }}-planemo-py${{ matrix.python-version }}
restore-keys: |
${{ runner.os }}-gx_repo
${{ runner.os }}-planemo-py
- name: Install Planemo
run: pip install Planemo
- name: Initialize conda
Expand Down Expand Up @@ -84,9 +84,9 @@ jobs:
uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
key: ${{ runner.os }}-pip-py${{ matrix.python-version }}
restore-keys: |
${{ runner.os }}-pip-
${{ runner.os }}-pip-py
- name: Install dependencies
run: pip install flake8 flake8-import-order planemo Pygments
- name: Check dependencies
Expand Down

0 comments on commit 3ae46c3

Please sign in to comment.