From 812936d90d911914218a57086eaf21e191822cd4 Mon Sep 17 00:00:00 2001 From: viewit Date: Thu, 25 Jun 2026 10:52:57 +0200 Subject: [PATCH] =?UTF-8?q?fix(ci):=20setup-python=20entfernen=20=E2=80=94?= =?UTF-8?q?=20self-hosted=20Runner=20nutzt=20System-Python?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/pr-check.yml | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/.gitea/workflows/pr-check.yml b/.gitea/workflows/pr-check.yml index a815f3d..58f9df9 100644 --- a/.gitea/workflows/pr-check.yml +++ b/.gitea/workflows/pr-check.yml @@ -11,21 +11,16 @@ jobs: steps: - uses: actions/checkout@v4 - - name: Python Setup - uses: actions/setup-python@v5 - with: - python-version: '3.11' - - name: Dependencies installieren - run: pip install -r requirements.txt + run: pip3 install -r requirements.txt - name: Lint run: | - pip install flake8 + pip3 install flake8 flake8 *.py --max-line-length=120 --extend-ignore=E501 - name: Tests run: | - pip install pytest + pip3 install pytest pytest tests/ -v if: ${{ hashFiles('tests/') != '' }}