Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions .github/workflows/tests-manual.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Tests (manual)
on: { workflow_dispatch: {} }
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with: { python-version: "3.12" }
- name: Install deps
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pytest
- name: Run tests
run: pytest -q
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
# Cronos DeFi Sentinel

Compact Python bot (<1000 lines) που παρακολουθεί το Cronos wallet σου,
κρατάει ledger με συναλλαγές, υπολογίζει PnL (realized & unrealized),
[![CI (AST only)](https://github.com/Zaikon13/wallet_monitor_Dex/actions/workflows/ci.yml/badge.svg)](https://github.com/Zaikon13/wallet_monitor_Dex/actions/workflows/ci.yml)
[![Tests (manual)](https://github.com/Zaikon13/wallet_monitor_Dex/actions/workflows/tests-manual.yml/badge.svg)](https://github.com/Zaikon13/wallet_monitor_Dex/actions/workflows/tests-manual.yml)
[![Runtime Smoke](https://github.com/Zaikon13/wallet_monitor_Dex/actions/workflows/runtime-smoke.yml/badge.svg)](https://github.com/Zaikon13/wallet_monitor_Dex/actions/workflows/runtime-smoke.yml)

Compact Python bot (<1000 lines) που παρακολουθεί το Cronos wallet σου,
κρατάει ledger με συναλλαγές, υπολογίζει PnL (realized & unrealized),
και στέλνει reports / alerts στο Telegram.

---
Expand Down