dev #2

Merged
wtukatyr merged 19 commits from dev into main 2025-06-05 23:09:25 +03:00
9 changed files with 62 additions and 4 deletions
Showing only changes of commit 0e40347a66 - Show all commits

View File

@@ -27,6 +27,17 @@ jobs:
requirements-path: requirements.txt
readme-path: README.md
python-version: 3.11 # python version which will lint the package
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install dependencies
run: pip install -r requirements.txt
- name: Run tests
run: pytest
- name: Notify in telegram about fail
if: ${{ failure() }}
uses: appleboy/telegram-action@master
@@ -38,5 +49,6 @@ jobs:
Commit message: ${{ github.event.commits[0].message }}
Repository: ${{ github.repository }}
See changes: https://github.com/${{ github.repository }}/commit/${{github.sha}}
- name: Check fail
run: echo "Unreachable"