forked from vieter-v/vieter
Added v vet to CI
parent
82b54622de
commit
b7d2d0e97d
|
@ -6,5 +6,12 @@ platform: linux/amd64
|
||||||
pipeline:
|
pipeline:
|
||||||
lint:
|
lint:
|
||||||
image: 'chewingbever/vlang:latest'
|
image: 'chewingbever/vlang:latest'
|
||||||
|
group: lint
|
||||||
commands:
|
commands:
|
||||||
- make lint
|
- make lint
|
||||||
|
|
||||||
|
vet:
|
||||||
|
image: 'chewingbever/vlang:latest'
|
||||||
|
group: lint
|
||||||
|
commands:
|
||||||
|
- make vet
|
||||||
|
|
4
Makefile
4
Makefile
|
@ -60,6 +60,10 @@ lint:
|
||||||
fmt:
|
fmt:
|
||||||
$(V) fmt -w $(SRC_DIR)
|
$(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
|
# Pulls & builds my personal build of the v compiler, required for this project to function
|
||||||
.PHONY: customv
|
.PHONY: customv
|
||||||
customv:
|
customv:
|
||||||
|
|
Loading…
Reference in New Issue