Files
go-sqlcipher/Makefile
T
Andreas Linz ffb2c496ae Replace Travis CI with Github Actions
The motiviation behind this change is that Github Actions is obviously better integrated in Github than Travis CI and that it will be easy to run test against non Linux platforms, e.g. macOS or Windows.
Tests are now run for the three most recent Go versions, i.e. Go 1.13, 1.14 and 1.15 .
A new 'test' target was added to the Makefile.
2020-08-19 19:49:26 +02:00

12 lines
203 B
Makefile

.PHONY: all update-modules
all:
env GO111MODULE=on go build -v ./...
test:
gocheck -g -c -e _example -e sqlite3_test
update-modules:
env GO111MODULE=on go get -u
env GO111MODULE=on go mod tidy -v