first commit

This commit is contained in:
Max Lerebourg
2022-09-27 18:12:25 +02:00
commit af41af2cee
12 changed files with 647 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
.PHONY: lint test vendor clean
export GO111MODULE=on
default: lint test
lint:
golangci-lint run
test:
go test -v -cover ./...
yaegi_test:
yaegi test -v .
vendor:
go mod vendor
clean:
rm -rf ./vendor