2023-10-17 13:27:33 +02:00
|
|
|
# SPDX-FileCopyrightText: 2023 Tobias Schmidl
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
|
|
|
|
---
|
|
|
|
steps:
|
|
|
|
|
|
|
|
editor-config:
|
|
|
|
image: mstruebing/editorconfig-checker
|
|
|
|
group: lint
|
|
|
|
|
|
|
|
reuse:
|
|
|
|
image: fsfe/reuse:latest
|
|
|
|
group: lint
|
|
|
|
|
|
|
|
shellcheck:
|
2023-11-13 14:29:41 +01:00
|
|
|
image: registry.gitlab.com/pipeline-components/shellcheck
|
|
|
|
group: lint
|
2023-10-17 13:27:33 +02:00
|
|
|
commands:
|
2023-11-13 14:29:41 +01:00
|
|
|
- find . -name .git -type d -prune -o -type f -name \*.sh -print0 | xargs -0 -r -n1 shellcheck -e SC2015
|
2023-10-17 13:27:33 +02:00
|
|
|
...
|