Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Initial implementation of go-translate #1

Merged
merged 14 commits into from Mar 22, 2019

Add Makefile

  • Loading branch information
yrliou committed Mar 18, 2019
commit 40bc6b73f81898f154149ec65bc8fe3ea46ef815
@@ -0,0 +1,15 @@
.PHONY: all build test lint clean

all: lint test build

build:
go run main.go

test:
go test -v ./...

lint:
golangci-lint run -E gofmt -E golint --exclude-use-default=false

clean:
rm -f go-translate
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.