From 2c7763d9e0da49f407f5620130bb236aeaecb75a Mon Sep 17 00:00:00 2001 From: moritzrfs Date: Sun, 4 May 2025 18:06:51 +0200 Subject: [PATCH] Add python-runner --- .gitea/workflows/test.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml index 2f98e69..e13610a 100644 --- a/.gitea/workflows/test.yaml +++ b/.gitea/workflows/test.yaml @@ -11,5 +11,6 @@ jobs: - uses: actions/setup-python@v5 with: python-version: '3.13' - - run: pip install -r requirements.txt # Installiere die benötigten Python-Pakete - # - run: python main.py # Führe dein Python-Skript aus + - run: pip install -r requirements.txt + - run: python main.py + - run: echo "Python script executed successfully!"