Working code

This commit is contained in:
stevenhowes
2022-03-08 20:17:16 +00:00
parent 1ab19d26cc
commit 6df4535ed5
4 changed files with 74 additions and 1 deletions
+20
View File
@@ -0,0 +1,20 @@
.DEFAULT_GOAL := install
fmt:
go mod tidy
go fmt ./...
.PHONY:fmt
lint: fmt
golint ./...
.PHONY:lint
vet: fmt
# Need to work this out for tinygo..
# go vet ./...
.PHONY:vet
install: vet
tinygo flash -target=pico
.PHONY:install