- ๐ Hi, Iโm @mrtisking1
- ๐ Iโm interested in ...
- ๐ฑ Iโm currently learning ...
- ๐๏ธ Iโm looking to collaborate on ...
- ๐ซ How to reach me ...
- ๐ Pronouns: ...
- โก Fun fact: ...
name: Financial Data Processing
on: schedule: - cron: '0 0 * * *' # Runs daily at midnight workflow_dispatch:
jobs: process-data: runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.9'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Process financial data
run: |
python scripts/process_data.py