d7fc56e006
Makefile: Move shellcheck to a "lint" target and change "check" so that it runs "lint". This provides a more finer grained control and allows to extend "check" with things beyond just linting. .gitlab-ci.yml: Run `make lint` in the lint job.
14 lines
210 B
YAML
14 lines
210 B
YAML
---
|
|
#
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
default:
|
|
image: archlinux/base
|
|
before_script:
|
|
- pacman --noconfirm -Syu --needed base-devel shellcheck
|
|
|
|
lint:
|
|
stage: build
|
|
script:
|
|
- make lint
|