archiso/.gitlab-ci.yml
nl6720 d7fc56e006
Move shell script linting into a separate make target
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.
2020-07-30 13:09:53 +03:00

13 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