We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4e4567f commit 16b2600Copy full SHA for 16b2600
1 file changed
.github/workflows/tests.yml
@@ -17,6 +17,17 @@ jobs:
17
steps:
18
- uses: actions/checkout@v4
19
20
+ - name: Cache downloaded data
21
+ uses: actions/cache@v4
22
+ with:
23
+ # The folder where pooch saves files on Linux
24
+ path: ~/.cache/yabplot
25
+ # Check registry.txt to decide if we need a fresh download
26
+ # (using **/ finds the file even if your folder structure varies)
27
+ key: yabplot-data-${{ hashFiles('**/registry.txt') }}
28
+ restore-keys: |
29
+ yabplot-data-
30
+
31
- name: Set up Python ${{ matrix.python-version }}
32
uses: actions/setup-python@v5
33
with:
0 commit comments