diff options
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -2,11 +2,11 @@ # build binary all: - go build -tags='sqlite_fts5' -ldflags='-s -w' + go build -tags='sqlite_fts5 sqlite_json' -ldflags='-s -w' # run all tests test: - go test -tags='sqlite_fts5' -cover ./... + go test -tags='sqlite_fts5 sqlite_json' -cover ./... # run all tests, print result to stdout as json testjson: |