Skip to content

run main.py

run main.py #8

name: run main.py
on:
schedule: [{cron: "0 0 * * 5"}] #agendamento
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: |
pip install --upgrade pip
pip install requests==2.31.0
pip install pandas==2.0.2
pip install bs4==0.0.1
pip install openpyxl==3.1.2
pip install requests_html==0.10.0
- name: execute py script # run main.py
run: python scripts/main.py
- name: commit files
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git add -A
git diff-index --quiet HEAD || (git commit -a -m "updated logs" --allow-empty)
- name: push changes
uses: ad-m/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: main