Skip to content

Weather data collector #550

Weather data collector

Weather data collector #550

Workflow file for this run

name: Weather data collector
on:
workflow_dispatch:
schedule:
- cron: '30 17 * * *' # 5:30pm(GMT) = 11:00pm(IST)
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout repo content
uses: actions/checkout@v2 # checkout the repository content to github runner
- name: setup python
uses: actions/setup-python@v4
with:
python-version: '3.9' # install the python version needed
- name: install python packages
run: |
python -m pip install --upgrade pip
pip install requests
- name: execute py script # run main.py
run: python Collector.py
- name: commit and push changes
run: |
git config user.email "hemsainath15@gmail.com"
git config user.name "GitHub Action"
git add -A
git commit -m "Dataset Updated"
git push