From 67986fbf292adc7c7906569459f2d0ca56397d4c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20W=C3=B6lzer?= <martin@libclapp.org> Date: Mon, 16 Sep 2024 21:11:07 +0200 Subject: [PATCH] .gitlab-ci/check.yml: introduced check pipelines --- .gitlab-ci.yml | 2 ++ .gitlab-ci/check.yml | 11 +++++++++++ 2 files changed, 13 insertions(+) create mode 100644 .gitlab-ci/check.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 503ce57f..16c35675 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,8 +1,10 @@ stages: - format + - check variables: GIT_STRATEGY: clone include: - local: /.gitlab-ci/format.yml + - local: /.gitlab-ci/check.yml diff --git a/.gitlab-ci/check.yml b/.gitlab-ci/check.yml new file mode 100644 index 00000000..040d944e --- /dev/null +++ b/.gitlab-ci/check.yml @@ -0,0 +1,11 @@ +.check-template: + stage: check + dependencies: [] + +shellcheck: + extends: + - .check-template + script: + - .ci/check/shellcheck.sh + tags: + - ubuntu-24.04-amd64 -- GitLab