-
Notifications
You must be signed in to change notification settings - Fork 374
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8e8152b
commit 5f5b939
Showing
5 changed files
with
20 additions
and
41 deletions.
There are no files selected for viewing
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,6 +1,6 @@ | ||
language: go | ||
go: | ||
- 1.13 | ||
- 1.22.1 | ||
script: | ||
- ./check_format.sh | ||
- env GO111MODULE=on make lint | ||
|
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
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 |
---|---|---|
|
@@ -7,5 +7,5 @@ up: | |
- mitmproxy | ||
- dep | ||
- go: | ||
version: 1.17.13 | ||
version: 1.22.1 | ||
modules: true |
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,31 +1,40 @@ | ||
module github.com/Shopify/themekit | ||
|
||
require ( | ||
github.com/VividCortex/ewma v1.1.1 // indirect | ||
github.com/aws/aws-sdk-go v1.34.0 | ||
github.com/caarlos0/env v0.0.0-20161013201842-d0de832ed2fb | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/fatih/color v1.7.0 | ||
github.com/hashicorp/go-version v0.0.0-20180716215031-270f2f71b1ee | ||
github.com/imdario/mergo v0.3.6 | ||
github.com/inconshreveable/go-update v0.0.0-20160112193335-8152e7eb6ccf | ||
github.com/inconshreveable/mousetrap v1.0.0 // indirect | ||
github.com/joho/godotenv v1.3.0 | ||
github.com/mattn/go-colorable v0.0.0-20180310133214-efa589957cd0 | ||
github.com/mattn/go-isatty v0.0.4 // indirect | ||
github.com/radovskyb/watcher v1.0.7 | ||
github.com/ryanuber/go-glob v0.0.0-20160226084822-572520ed46db | ||
github.com/shibukawa/configdir v0.0.0-20170330084843-e180dbdc8da0 | ||
github.com/skratchdot/open-golang v0.0.0-20160302144031-75fb7ed4208c | ||
github.com/spf13/cobra v0.0.0-20180722215644-7c4570c3ebeb | ||
github.com/spf13/pflag v1.0.2 // indirect | ||
github.com/stretchr/objx v0.1.1 // indirect | ||
github.com/stretchr/testify v1.5.1 | ||
github.com/vbauerster/mpb v3.3.2+incompatible | ||
golang.org/x/net v0.17.0 // indirect | ||
golang.org/x/sync v0.1.0 | ||
golang.org/x/time v0.0.0-20200630173020-3af7569d3a1e | ||
gopkg.in/yaml.v1 v1.0.0-20140924161607-9f9df34309c0 | ||
) | ||
|
||
go 1.13 | ||
require ( | ||
github.com/VividCortex/ewma v1.1.1 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/inconshreveable/mousetrap v1.0.0 // indirect | ||
github.com/jmespath/go-jmespath v0.3.0 // indirect | ||
github.com/mattn/go-isatty v0.0.4 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/spf13/pflag v1.0.2 // indirect | ||
github.com/stretchr/objx v0.1.1 // indirect | ||
golang.org/x/crypto v0.14.0 // indirect | ||
golang.org/x/net v0.17.0 // indirect | ||
golang.org/x/sys v0.13.0 // indirect | ||
golang.org/x/term v0.13.0 // indirect | ||
gopkg.in/yaml.v2 v2.2.2 // indirect | ||
) | ||
|
||
go 1.22.1 |
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