Skip to content
Merged
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
4 changes: 3 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ jobs:

- name: Test
run: |
bash -n bootstrap.sh install.sh install_gotelegram_bot.sh lib/*.sh
for script in bootstrap.sh install.sh install_gotelegram_bot.sh lib/*.sh; do
bash -n "$script"
done
python -m unittest discover -s tests -v
python -m py_compile cluster/*.py gotelegram-bot/*.py admin-web/server.py
node --check admin-web/static/app.js
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@ jobs:
with:
python-version: "3.12"
- name: Bash syntax
run: bash -n bootstrap.sh install.sh install_gotelegram_bot.sh lib/*.sh
run: |
for script in bootstrap.sh install.sh install_gotelegram_bot.sh lib/*.sh; do
bash -n "$script"
done
- name: Python tests
run: python -m unittest discover -s tests -v
- name: Python syntax
Expand Down
2 changes: 1 addition & 1 deletion lib/cluster.sh
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ cluster_install_node_service() {
log_error "Код подключения имеет неверный формат."
log_dim "Скопируйте только сам код из основного IGProxy, без подписи и кавычек."
return 10
}
fi
log_dim "Код распознан: ${#pairing_code} символа."
public_ip=$(get_server_ip 2>/dev/null || true)
install -d -m 700 "$IGPROXY_NODE_DIR" "$IGPROXY_NODE_STATE_DIR"
Expand Down
2 changes: 1 addition & 1 deletion lib/common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Colors, logging, spinner, system helpers, v1 compat, i18n-aware

# ── Version ───────────────────────────────────────────────────────────────────
GOTELEGRAM_VERSION="2.15.5"
GOTELEGRAM_VERSION="2.15.6"
GOTELEGRAM_NAME="IGProxy"

# ── Пути ──────────────────────────────────────────────────────────────────────
Expand Down
Loading