Skip to content

Commit

Permalink
Add Go Modules Support (#64)
Browse files Browse the repository at this point in the history
Co-authored-by: visortim <[email protected]>
Co-authored-by: Mickey Reiss <[email protected]>
  • Loading branch information
3 people authored Mar 24, 2020
1 parent 5bb0a07 commit f3be79f
Show file tree
Hide file tree
Showing 3 changed files with 322 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: 2
jobs:
build:
docker:
- image: circleci/golang:1.11
- image: circleci/golang:1.13
working_directory: /go/src/github.com/visor-tax/firemodel
steps:
- checkout
Expand All @@ -12,5 +12,5 @@ jobs:
- run: diff -u <(echo -n) <(gofmt -d -s .)
- run:
name: Install golangci-lint
command: curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sudo sh -s -- -b $GOPATH/bin v1.11.2
command: curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sudo sh -s -- -b $GOPATH/bin v1.24.0
- run: golangci-lint run
22 changes: 22 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
module github.com/visor-tax/firemodel

go 1.13

require (
cloud.google.com/go/firestore v1.1.1
github.com/alecthomas/go-thrift v0.0.0-20170109061633-7914173639b2 // indirect
github.com/alecthomas/kong v0.2.1 // indirect
github.com/alecthomas/participle v0.3.0
github.com/alecthomas/repr v0.0.0-20181024024818-d37bc2a10ba1 // indirect
github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751 // indirect
github.com/alecthomas/units v0.0.0-20190924025748-f65c72e2690d // indirect
github.com/dave/jennifer v1.4.0
github.com/go-errors/errors v1.0.1
github.com/google/go-cmp v0.4.0 // indirect
github.com/iancoleman/strcase v0.0.0-20191112232945-16388991a334
github.com/pkg/errors v0.9.1
github.com/sergi/go-diff v1.1.0
github.com/spf13/cobra v0.0.6
google.golang.org/genproto v0.0.0-20200323114720-3f67cca34472
gotest.tools v2.2.0+incompatible
)
Loading

0 comments on commit f3be79f

Please sign in to comment.