diff --git a/.gitpod.Dockerfile b/.gitpod.Dockerfile index f8e49f2..a6dc304 100644 --- a/.gitpod.Dockerfile +++ b/.gitpod.Dockerfile @@ -1,7 +1,5 @@ FROM gitpod/workspace-full -# Install custom tools, runtimes, etc. -# For example "bastet", a command-line tetris clone: -# RUN brew install bastet -# +RUN brew update && brew install golangci-lint + # More information: https://www.gitpod.io/docs/config-docker/ diff --git a/.gitpod.yml b/.gitpod.yml index e143a8d..04f9809 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -2,5 +2,4 @@ image: file: .gitpod.Dockerfile tasks: - - init: go get && go build ./... && go test ./... && make - command: go run + - command: make