Merge pull request 'Added v vet to CI' (#29) from vvet into dev
ci/woodpecker/push/build unknown status Details
ci/woodpecker/push/build_arm64 unknown status Details
ci/woodpecker/push/lint unknown status Details
ci/woodpecker/push/builder Pipeline was successful Details
ci/woodpecker/push/publish Pipeline failed Details

Reviewed-on: Chewing_Bever/vieter#29
pull/53/head
Jef Roosens 2022-01-14 21:03:55 +01:00
commit 1bd3ed3523
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: