got a failing test for the two pair bigger pair bug

This commit is contained in:
2024-05-18 21:17:38 -07:00
parent 39e2f5a268
commit 11c5886951
6 changed files with 166 additions and 36 deletions

View File

@@ -1,4 +1,18 @@
default: test
.PHONY: examples
default: run
run: simgame
simgame: examples
./bin/simgame
clean:
rm -rf bin
test:
go test -v -count=1 ./...
examples:
test -d bin || mkdir bin
go build -o bin/ ./examples/...