Add basic CI configuration
This commit is contained in:
parent
66bf91f2e9
commit
7747f87536
2 changed files with 15 additions and 0 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
.shellcheck.tmp
|
14
.gitlab-ci.yml
Normal file
14
.gitlab-ci.yml
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
stages:
|
||||||
|
- test
|
||||||
|
|
||||||
|
image: code.ungleich.ch:5050/ungleich-public/cdist/cdist-ci:latest
|
||||||
|
|
||||||
|
shellcheck:
|
||||||
|
stage: test
|
||||||
|
script:
|
||||||
|
- ./scripts/run-shellcheck.sh
|
||||||
|
|
||||||
|
manpages:
|
||||||
|
stage: test
|
||||||
|
script:
|
||||||
|
- ./scripts/run-manpage-checks.sh
|
Loading…
Reference in a new issue