Skip to content

Commit

Permalink
moving to go modules
Browse files Browse the repository at this point in the history
  • Loading branch information
robscott committed Oct 13, 2018
1 parent edee377 commit 64220f0
Show file tree
Hide file tree
Showing 5 changed files with 116 additions and 555 deletions.
10 changes: 6 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,23 +5,25 @@ jobs:

docker:
- image: circleci/golang:1.11
environment:
GO111MODULE: "on"

steps:
- checkout
- run: curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
- run: dep ensure
- run: go mod download && go mod verify
- run: go test -v ./lookup/...

release:
working_directory: /go/src/github.com/reactiveops/rbac-lookup

docker:
- image: goreleaser/goreleaser
environment:
GO111MODULE: "on"

steps:
- checkout
- run: curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
- run: dep ensure
- run: go mod download && go mod verify
- run: goreleaser

workflows:
Expand Down
Loading

0 comments on commit 64220f0

Please sign in to comment.