15 lines
220 B
YAML
15 lines
220 B
YAML
image: debian:stable-slim
|
|
|
|
stages:
|
|
- test
|
|
|
|
before_script:
|
|
- apt-get update
|
|
- apt-get install -y bash pylint3 shellcheck
|
|
- ln -fs $(which pylint3) /usr/bin/pylint
|
|
|
|
test:
|
|
stage: test
|
|
script:
|
|
- bash test.sh
|