Compare commits

..

No commits in common. "develop" and "v0.3.1" have entirely different histories.

2 changed files with 0 additions and 14 deletions

1
.gitignore vendored
View File

@ -2,4 +2,3 @@
!assets/*.png
.env
*.sqlite3
chessbot

View File

@ -1,13 +0,0 @@
.PHONY: build test
SOURCES := main.go $(shell find chess -name '*.go')
build: chessbot
chessbot: $(SOURCES)
go build -o chessbot .
test:
## -count=1 is used to disable cache
## use -run <regexp> to only run tests that match <regexp>
go test ./chess -v -count=1