Skip to content

mtatracker

mtatracker #1045

Workflow file for this run

name: mtatracker
on:
schedule:
- cron: '0 21 * * *'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pandas
pip install pytz
pip install plotly
pip install numpy
- name: Run mta2.py
run: |
python ./mta2.py
- name: Git push
run: |
git config --global user.name "mayijun1203"
git config --global user.email "[email protected]"
git add .
git commit -m "update"
git push