forked from vieter-v/vieter
Added v vet to CI
This commit is contained in:
parent
82b54622de
commit
b7d2d0e97d
2 changed files with 11 additions and 0 deletions
|
|
@ -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
|
||||
|
|
|
|||
4
Makefile
4
Makefile
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue