Skip to content

fix: telegram_notify.py — remove duplicate append bug, add channel li… #44

fix: telegram_notify.py — remove duplicate append bug, add channel li…

fix: telegram_notify.py — remove duplicate append bug, add channel li… #44

Workflow file for this run

name: Pytest
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: pip
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pytest
- name: Run tests
run: python -m pytest