Skip to content

Commit

Permalink
Update test-ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
mcencini authored Sep 12, 2024
1 parent 2c306e8 commit a99c0e0
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/test-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,13 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: "3.10"

- name: Restore cached mrtwin directory
uses: actions/cache/restore@v4
id: cache-restore
with:
path: ~/.cache/mrtwin
key: ${{ runner.os }}-mrtwin

- name: Install dependencies
shell: bash -l {0}
Expand All @@ -162,6 +169,13 @@ jobs:
- name: Display data
run: ls -R
working-directory: docs_build/_static

- name: Cache mrtwin directory
uses: actions/cache/save@v4
if: ${{ steps.cache-restore.outputs.cache-hit != 'true' }}
with:
path: ~/.cache/mrtwin
key: ${{ runner.os }}-mrtwin

- name: Upload artifact
id: artifact-upload-step
Expand Down

0 comments on commit a99c0e0

Please sign in to comment.