chore(gitlab-ci): make backend-lint

This commit is contained in:
Sarah Vaupel 2024-01-17 12:10:45 +01:00
parent 70448446e8
commit dd8119a987
2 changed files with 10 additions and 2 deletions

View File

@ -94,6 +94,14 @@ frontend build:
retry: 2
interruptible: true
backend lint:
stage: lint
script:
- "nix shell .#gnumake --command make backend-lint"
before_script: *nix-before
retry: 2
interruptible: true
uniworx:lib:uniworx:
stage: build
script:

View File

@ -30,8 +30,8 @@ backend-%: .develop.env .stack-work.lock --stack-work-$*
#--backend-start: .develop.env
# ./start.sh
.PHONY: --backend-lint
--backend-lint: .develop.env
.PHONY: backend-lint
backend-lint: .develop.env
stack build --test --fast --flag uniworx:dev --flag uniworx:library-only uniworx:test:hlint
.PHONY: --backend-test