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 6e8dd52 commit 0cae4cfCopy full SHA for 0cae4cf
.github/workflows/actions.yml
@@ -1,4 +1,4 @@
1
-name: run main.py
+name: Aggregate Smartraveller Data
2
3
on:
4
schedule:
@@ -19,15 +19,16 @@ jobs:
19
- name: Set up Python 3.10
20
uses: actions/setup-python@v2
21
with:
22
- python-version: 3.10.10
+ allow-prereleases: true
23
+ python-version: 3.12
24
25
- name: Install requirements
26
run: |
- python -m pip install --upgrade pip
27
- pip install -r requirements.txt
+ pip install pipenv
28
+ pipenv install --deploy
29
30
- name: Run aggregation script
- run: python smartraveller/aggregate.py
31
+ run: pipenv run python ./smartraveller/aggregate.py
32
33
- name: Commit aggregated data
34
uses: stefanzweifel/git-auto-commit-action@v5
0 commit comments