-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #19 from kishaningithub/remove-dependabot-and-upgr…
…ade-deps Update all dependencies and update go version to 1.17
- Loading branch information
Showing
5 changed files
with
33 additions
and
18 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,4 +22,4 @@ jobs: | |
- name: Test | ||
run: | | ||
make build | ||
./bin/goreleaser check | ||
./bin/goreleaser check |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,20 @@ | ||
build: | ||
go mod download | ||
go fmt ./... | ||
unit-test: | ||
go test -v ./... | ||
go mod tidy | ||
|
||
build: download-deps tidy-deps fmt unit-test compile | ||
|
||
fmt: ## Run the code formatter | ||
gofmt -l -s -w . | ||
|
||
download-deps: | ||
go mod download | ||
|
||
tidy-deps: | ||
go mod tidy | ||
|
||
update-deps: | ||
go get -u ./... | ||
go mod tidy | ||
|
||
compile: | ||
go build -v ./... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,19 @@ | ||
module github.com/kishaningithub/shopify-csv-download | ||
|
||
go 1.16 | ||
go 1.17 | ||
|
||
require ( | ||
github.com/bradhe/stopwatch v0.0.0-20190618212248-a58cccc508ea | ||
github.com/gocarina/gocsv v0.0.0-20210408192840-02d7211d929d | ||
github.com/gocarina/gocsv v0.0.0-20211020200912-82fc2684cc48 | ||
github.com/jarcoal/httpmock v1.0.8 | ||
github.com/jessevdk/go-flags v1.5.0 | ||
github.com/stretchr/testify v1.7.0 | ||
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c | ||
golang.org/x/sys v0.0.0-20211025201205-69cdffdb9359 // indirect | ||
) | ||
|
||
require ( | ||
github.com/davecgh/go-spew v1.1.0 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters