zsh/.woodpecker.yml
Tobias Schmidl 16673a9e1a
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
feat: added woodpecker config, added .ecrc
2023-10-05 14:28:03 +02:00

20 lines
457 B
YAML

# SPDX-FileCopyrightText: 2023 Tobias Schmidl
#
# SPDX-License-Identifier: GPL-3.0-or-later
---
steps:
shellcheck:
group: lint
image: registry.gitlab.com/pipeline-components/shellcheck
commands:
- find . -name .git -type d -prune -o -type f -name \*.sh -print0 | xargs -0 -r -n1 shellcheck -e SC2015
editor-config:
image: mstruebing/editorconfig-checker
group: lint
reuse:
image: fsfe/reuse:latest
group: lint
...