From 3725f92fa329f7a5159ccce3cb803e2afd6901f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20De=20Keersmaeker?= <francois.dekeersmaeker@uclouvain.be> Date: Sun, 13 Oct 2024 15:25:09 +0200 Subject: [PATCH] CI: fix submodule recursive cloning --- .gitlab-ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index feddfe6..f83787f 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -8,6 +8,7 @@ variables: test-job: stage: test script: + - git submodule update --init --recursive - python3 -m venv .venv # Create Python virtual environment - source .venv/bin/activate # Activate Python virtual environment - pip3 install -r requirements.txt # Install Python dependencies -- GitLab