Python application #3442
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: Python application | |
on: | |
schedule: | |
- cron: '*/5 * * * *' # Hər 5 dəqiqədən bir işləyəcək | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 # Yeni versiya | |
- name: Set up Python | |
uses: actions/setup-python@v4 # Yeni versiya | |
with: | |
python-version: '3.x' | |
- name : telethon yukle | |
run : | | |
pip install telethon | |
- name: Run script | |
run: | | |
python main.py |