chore: added Makefile & ci linting
ci/woodpecker/push/lint Pipeline was successful Details

jef
Jef Roosens 2022-06-18 20:58:53 +02:00
parent 2c70c62581
commit f92f73b0ff
Signed by: Jef Roosens
GPG Key ID: B75D4F293C7052DB
3 changed files with 46 additions and 0 deletions

2
.gitignore vendored
View File

@ -1 +1,3 @@
*.so
_docs/

View File

@ -0,0 +1,13 @@
branches:
exclude: [ main ]
platform: 'linux/amd64'
pipeline:
lint:
image: 'chewingbever/vlang:latest'
pull: true
commands:
- make lint
when:
event: [ push ]

31
Makefile 100644
View File

@ -0,0 +1,31 @@
# =====CONFIG=====
V_PATH ?= v
V := $(V_PATH) -showcc
all: vdocker
# =====COMPILATION=====
.PHONY: vdocker
vdocker:
$(V) -g -shared .
# =====DOCS=====
.PHONY: api-docs
api-docs:
rm -rf '_docs'
v doc -f html -m -readme .
# =====OTHER=====
.PHONY: lint
lint:
$(V) fmt -verify .
$(V) vet -W .
$(V_PATH) missdoc -p .
@ [ $$($(V_PATH) missdoc -p . | wc -l) = 0 ]
.PHONY: fmt
fmt:
$(V) fmt -w .