Files
antigravity/.gitea/workflows/sanity.yaml
serhiimosiiash 367d39fb03
All checks were successful
Sanity Check / health-check (push) Successful in 8s
Fix: Remove setup-python action
2025-12-19 14:20:04 +02:00

22 lines
617 B
YAML

name: Sanity Check
run-name: 🟢 System Health Check
on: [push]
jobs:
health-check:
runs-on: ubuntu-latest
steps:
- name: 📥 Check out repository
uses: actions/checkout@v3
- name: 🐍 Run Sanity Script
run: |
# Встановлюємо python3, якщо його немає (на всяк випадок)
if ! command -v python3 &> /dev/null; then
echo "Installing Python..."
apt-get update && apt-get install -y python3
fi
# Запускаємо скрипт
python3 sanity_check.py