diff --git a/.travis.yml b/.travis.yml index d080cb0..bd10aea 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,7 +4,7 @@ go: - 1.14.x install: - - go get -v -d -t github.com/sirkon/ldetool + - git clone https://github.com/sirkon/ldetool.git script: - make test diff --git a/Makefile b/Makefile index 104ab55..07ef516 100644 --- a/Makefile +++ b/Makefile @@ -1,9 +1,9 @@ test: PATH=${GOPATH}/bin:${PATH} - go install - go generate github.com/sirkon/ldetool/testing + cd ldetool && go install + cd ldetool && go generate ./testing which ldetool - go test -test.v github.com/sirkon/ldetool/testing + cd ldetool && go test -test.v ./testing grammar: antlr4 -no-visitor -listener -o internal/parser -Dlanguage=Go LDE.g4