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 6a8ee57 commit d1a3dbeCopy full SHA for d1a3dbe
.github/workflows/cron.yml
@@ -25,18 +25,27 @@ jobs:
25
steps:
26
- uses: actions/checkout@v1
27
28
- - name: Set up Python 3.9
+ - name: Set up Python 3.7
29
uses: actions/setup-python@v1
30
with:
31
- python-version: 3.9
+ python-version: 3.7
32
33
- name: Install Pipenv
34
uses: dschep/install-pipenv-action@v1
35
36
+ - name: Cache Python dependencies
37
+ uses: actions/cache@v1
38
+ with:
39
+ path: .venv
40
+ key: pip-3.7-${{ hashFiles('**/Pipfile.lock') }}
41
+ restore-keys: |
42
+ pip-3.7-
43
+ pip-
44
+
45
- name: Install dependencies
46
run: pipenv sync
47
env:
- PIPENV_DEFAULT_PYTHON_VERSION: 3.9
48
+ PIPENV_DEFAULT_PYTHON_VERSION: 3.7
49
50
- name: Run scrapers
51
run: |
0 commit comments