Skip to content

Check

Check #141771

Workflow file for this run

name: Check
on:
repository_dispatch:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Setup python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Execute script
run: |
python gradapp_bot.py
env:
TG_BOT_TOKEN: ${{ secrets.TG_BOT_TOKEN }}
TG_CHAT_ID: ${{ secrets.TG_CHAT_ID }}
API_TOKEN_1P3A: ${{ secrets.API_TOKEN_1P3A }}
DEVICE_ID_1P3A: ${{ secrets.DEVICE_ID_1P3A }}