We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94f8c9f commit c9fc5ceCopy full SHA for c9fc5ce
1 file changed
.github/workflows/test.yml
@@ -39,12 +39,20 @@ jobs:
39
- name: Run static analysis
40
run: hatch fmt --linter
41
42
+ - name: Cache datasets
43
+ uses: actions/cache@v3
44
+ with:
45
+ path: datasets/
46
+ key: datasets-${{ hashFiles('bin/download_data.py') }}
47
+ restore-keys: |
48
+ datasets-
49
+
50
- name: Download data
51
run: hatch run geonamescache-dev:bin/download_data.py
52
53
- name: Create JSON files
54
env:
- GEONAMES_USER: ${{ secrets.GEONAMES_USER }}
55
+ GEONAMES_USER: ${{ secrets.GEONAMES_USER }}
56
run: hatch run geonamescache-dev:make json
57
58
- name: Run tests
0 commit comments