Added v vet to CI

main
Jef Roosens 2022-01-14 21:02:34 +01:00
parent 82b54622de
commit b7d2d0e97d
Signed by: Jef Roosens
GPG Key ID: 955C0660072F691F
2 changed files with 11 additions and 0 deletions

View File

@ -6,5 +6,12 @@ platform: linux/amd64
pipeline:
lint:
image: 'chewingbever/vlang:latest'
group: lint
commands:
- make lint
vet:
image: 'chewingbever/vlang:latest'
group: lint
commands:
- make vet

View File

@ -60,6 +60,10 @@ lint:
fmt:
$(V) fmt -w $(SRC_DIR)
.PHONY: vet
vet:
$(V) vet -W $(SRC_DIR)
# Pulls & builds my personal build of the v compiler, required for this project to function
.PHONY: customv
customv: