From a67f7e33e0eb56a8f6ccd19a5ac17b3a3b976d18 Mon Sep 17 00:00:00 2001 From: Mateusz Suski Date: Thu, 30 Apr 2026 06:55:01 +0000 Subject: [PATCH] fix python deps --- .gitea/workflows/ci.yml | 23 +++-------------------- 1 file changed, 3 insertions(+), 20 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index f79c35f..c539835 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -9,39 +9,22 @@ jobs: runs-on: ubuntu steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Debug - run: | - echo "START" - whoami - pwd - ls -la + - uses: actions/checkout@v4 - name: Install deps - shell: bash run: | apt-get update - apt-get install -y python3 python3-pip - pip3 install ansible + apt-get install -y python3 python3-pip ansible docker.io - name: Python syntax check - shell: bash run: | - python3 -m py_compile \ - migration-validation-framework/cli.py \ - migration-validation-framework/collectors/*.py \ - migration-validation-framework/validators/*.py \ - migration-validation-framework/reports/*.py + find migration-validation-framework -name "*.py" -exec python3 -m py_compile {} \; - name: Ansible syntax check - shell: bash run: | ansible-playbook -i enterprise-infra-simulator/inventory/hosts.ini \ --syntax-check enterprise-infra-simulator/playbooks/*.yml - name: Docker compose validation - shell: bash run: | docker compose -f observability-stack/docker-compose.yml config \ No newline at end of file