mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-26 14:23:09 +00:00
20 lines
597 B
YAML
20 lines
597 B
YAML
# SPDX-FileCopyrightText: None
|
|
# SPDX-License-Identifier: CC0-1.0
|
|
|
|
include:
|
|
- project: sysadmin/ci-utilities
|
|
file:
|
|
- /gitlab-templates/reuse-lint.yml
|
|
- /gitlab-templates/linux-qt6.yml
|
|
|
|
posix-script-compliance:
|
|
image:
|
|
name: debian:latest
|
|
entrypoint: [""]
|
|
stage: build
|
|
script:
|
|
- apt-get update
|
|
- apt-get -y install shellcheck
|
|
- shellcheck -x -s sh bin/startplasmamobile.in
|
|
- shellcheck -x -s sh bin/startplasmamobile.in
|
|
- shellcheck -x --exclude=1091 -s sh bin/startplasmamobile-dev.sh.cmake # ignore error from file not existing (given by cmake)
|