Update data #36449
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |