From f6c401a0192c0de4601a28969e0af794f8aa79e3 Mon Sep 17 00:00:00 2001 From: Jonas L Date: Fri, 25 Aug 2023 16:12:47 +0200 Subject: [PATCH] ci: explicitly declare pre-commit job (#313) ##### SUMMARY The pre-commit template does not set the job automatically. --- .gitlab-ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 95bb125..3387f82 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -15,6 +15,9 @@ variables: default: image: python:$PYTHON_VERSION +pre-commit: + extends: [.pre-commit] + sanity: stage: sanity allow_failure: true