-
Notifications
You must be signed in to change notification settings - Fork 0
43 lines (37 loc) · 960 Bytes
/
workflow.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
name: workflow
on:
#workflow_dispatch
schedule:
- cron: '45 18 2 * *'
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 1200
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: "3.10"
- name: Running
run: |
echo "Running!"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pandas
pip install datetime
pip install sodapy
pip install plotly
- name: Run VR_MonthlyDiff_forGithub.py
env:
NYS_APP_TOKEN: ${{secrets.NYS_APP_TOKEN}}
run: |
python ./VR_MonthlyDiff_forGithub.py
- name: Git push
run: |
git config --global user.name "rrlinrr"
git config --global user.email "[email protected]"
git add .
git commit -m "update"
git push