Fix test workflow: install git before checkout
Some checks failed
Build and push Docker image / build (push) Successful in 12s
Test / test (push) Failing after 13s

This commit is contained in:
marwin 2026-03-16 20:00:42 +01:00
parent 50d9c603bd
commit 3677295580

View file

@ -14,6 +14,9 @@ jobs:
image: python:3.12-slim image: python:3.12-slim
steps: steps:
- name: Install git
run: apt-get update && apt-get install -y --no-install-recommends git
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Install dependencies - name: Install dependencies