Skip to content

Update data

Update data #36448

Workflow file for this run

name: Update data
on:
push:
schedule:
- cron: "0 * * * *"
jobs:
run:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: '3.x'
- name: Install dependencies
run: |
dir
python -m pip install --upgrade pip
python -m pip install pandas
python -m pip install requests
python -m pip install lxml
python -m pip install beautifulsoup4
python update_data.py
dir
- uses: stefanzweifel/git-auto-commit-action@v4