diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7d99e57..ead20b9 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -13,19 +13,21 @@ # along with scripts. If not, see . # Original author: Maciej Barć -# Copyright (c) 2020, src_prepare group +# Copyright (c) 2020-2021, src_prepare group # Licensed under the GNU GPL v3 License -image: debian:stable-slim +image: alpine:latest + stages: - test + before_script: - - apt-get update - - apt-get install -y bash pylint3 shellcheck - - ln -fs $(which pylint3) /usr/bin/pylint + - apk update + - apk install py3-pylint shellcheck + test: stage: test