fix(ci): setup-python entfernen — self-hosted Runner nutzt System-Python
All checks were successful
Nightly Build / build (push) Successful in 5m45s

This commit is contained in:
2026-06-25 10:52:57 +02:00
parent 326453e2fd
commit 812936d90d

View File

@@ -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/') != '' }}