Skip to content
Snippets Groups Projects
Commit 2fb695bd authored by Jörg Sachse's avatar Jörg Sachse
Browse files

add Gitlab-CI config

parent 21947228
Branches
No related tags found
No related merge requests found
Pipeline #6284 failed
---
# A pipeline is composed of independent jobs that run scripts, grouped into stages.
# Stages run in sequential order, but jobs within stages run in parallel.
#
# For more information, see: https://docs.gitlab.com/ee/ci/yaml/index.html#stages
image: debian:stable-slim
stages: # List of stages for jobs, and their order of execution
- test
default:
tags:
- docker
before_script:
- apt-get update
- apt-get -y install shellcheck xargs
test-syntax-job: # This job runs in the test stage.
stage: test # It only starts when the job in the build stage completes successfully.
script:
- find ./ -name *.sh | xargs shellcheck --color=always --shell=bash --external-sources
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment