c6b6f6062d
Signed-off-by: Maciej Barć <xgqt@riseup.net>
34 lines
941 B
YAML
34 lines
941 B
YAML
# This file is part of scripts.
|
|
|
|
# scripts is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, version 3.
|
|
|
|
# scripts is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with scripts. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
# Original author: Maciej Barć <xgqt@riseup.net>
|
|
# Copyright (c) 2020, src_prepare group
|
|
# Licensed under the GNU GPL v3 License
|
|
|
|
|
|
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
|