Files
antigravity/.gitea/workflows/sanity.yaml
serhiimosiiash a23f72b45f
All checks were successful
Infrastructure Audit / audit (push) Successful in 35s
Fix: Remove duplicate volume mount
2025-12-19 14:30:07 +02:00

24 lines
732 B
YAML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
name: Infrastructure Audit
run-name: 📊 Server Status Report
on: [push]
jobs:
audit:
runs-on: ubuntu-latest
container:
# Використовуємо образ Node (щоб працював checkout)
# Секцію volumes ми ПРИБРАЛИ, бо Runner робить це сам
image: node:16-bullseye
steps:
- name: 📥 Check out repository
uses: actions/checkout@v3
- name: 🛠️ Setup Tools
run: |
# Встановлюємо Docker CLI (щоб говорити з сокетом, який вже там є)
apt-get update
apt-get install -y docker.io python3
- name: 🐍 Run Audit Script
run: python3 audit.py