diff options
| author | nl6720 <nl6720@gmail.com> | 2020-07-30 10:00:37 +0300 |
|---|---|---|
| committer | nl6720 <nl6720@gmail.com> | 2020-07-30 13:09:53 +0300 |
| commit | d7fc56e0066fc0bdfd1d45e4e67f53b218609897 (patch) | |
| tree | fcce1501db07347223d615ec9d5fa66c7f904e1b /.gitlab-ci.yml | |
| parent | a96330699f6a45de80138a84e7029fd56fbcc78d (diff) | |
| download | archiso-d7fc56e0066fc0bdfd1d45e4e67f53b218609897.tar.gz archiso-d7fc56e0066fc0bdfd1d45e4e67f53b218609897.tar.bz2 | |
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.
Diffstat (limited to '.gitlab-ci.yml')
| -rw-r--r-- | .gitlab-ci.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d85b887..e5a4e03 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -10,4 +10,4 @@ default: lint: stage: build script: - - make check + - make lint |
