ci: Actions auf native Shell-Commands umgestellt (kein Node.js nötig)

This commit is contained in:
2026-06-25 12:46:31 +02:00
parent e753bcdb03
commit 29a4262a2a
3 changed files with 47 additions and 25 deletions

View File

@ -9,7 +9,15 @@ jobs:
lint-and-test:
runs-on: server-runner
steps:
- uses: actions/checkout@v4
- name: Checkout
run: |
if [ -d .git ]; then
git fetch origin
git reset --hard origin/nightly
git clean -fd
else
git clone --depth=1 --branch nightly https://gitea.it-drui.de/viewit/KX-Bridge-Release.git .
fi
- name: Dependencies installieren
run: pip3 install -r requirements.txt