From a060bfdfc0011389236b35633b4f6bff921b8ba8 Mon Sep 17 00:00:00 2001 From: Laurent Peuch Date: Thu, 9 Jun 2022 04:21:06 +0200 Subject: [PATCH] ci(gitlab-ci): use templates from a common repository --- .gitlab-ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 8f88073..dd3e2b8 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -10,6 +10,7 @@ include: - "templates/no-duplicated-ci-pipelines.yml" # use workflow to avoid duplicated pipelines - "templates/lint/twine-check.yml" # will run twine check to see if pypi won't reject the package - "templates/lint/check-dependencies-resolution.yml" # will run pip-compile -n to check if dependencies are compatibles + - "templates/lint/safety.yml" # will run 'safety check --full-report' on the installed project - "templates/lint/flake8.yml" # will do the equivalent of 'tox -e flake8' - "templates/lint/check-manifest.yml" # will do the equivalent of 'tox -e check-manifest' - "templates/lint/yamllint.yml" # will do the equivalent of 'tox -e yamllint' -- GitLab