We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fbd1e03 commit 473cea2Copy full SHA for 473cea2
.github/workflows/python-package-conda.yml
@@ -1,4 +1,33 @@
1
-name: Python Package using Conda
+name: Run Telegram Bot
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ schedule:
8
+ - cron: "*/10 * * * *" # প্রতি 10 মিনিটে চেক করবে
9
10
+jobs:
11
+ run-bot:
12
+ runs-on: ubuntu-latest
13
14
+ steps:
15
+ - name: Checkout Repository
16
+ uses: actions/checkout@v3
17
18
+ - name: Set up Python
19
+ uses: actions/setup-python@v4
20
+ with:
21
+ python-version: '3.11'
22
23
+ - name: Install Dependencies
24
+ run: |
25
+ python -m pip install --upgrade pip
26
+ pip install -r requirements.txt
27
28
+ - name: Run Bot
29
30
+ python bot.py: Python Package using Conda
31
32
on: [push]
33
0 commit comments