-
Notifications
You must be signed in to change notification settings - Fork 13
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
Showing
8 changed files
with
253 additions
and
113 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 |
---|---|---|
|
@@ -16,15 +16,16 @@ jobs: | |
- name: Set up Go | ||
uses: actions/setup-go@v2 | ||
with: | ||
go-version: 1.15 | ||
go-version: 1.16 | ||
|
||
- name: Setup golangci-lint | ||
uses: golangci/[email protected] | ||
with: | ||
version: v1.41.1 | ||
version: v1.43.0 | ||
args: "--timeout 5m -v -c .golangci.yml" | ||
|
||
- name: Lint | ||
run: /home/runner/golangci-lint-1.41.1-linux-amd64/golangci-lint run -v -c .golangci.yml | ||
run: /home/runner/golangci-lint-1.43.0-linux-amd64/golangci-lint run -v -c .golangci.yml | ||
|
||
- name: Test | ||
run: make test coverage | ||
|
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 |
---|---|---|
|
@@ -19,6 +19,7 @@ linters: | |
- cyclop | ||
- tagliatelle | ||
- goerr113 | ||
- varnamelen | ||
fast: false | ||
|
||
# Settings for specific linters | ||
|
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 |
---|---|---|
@@ -1,40 +1,15 @@ | ||
module github.com/saucelabs/forwarder | ||
|
||
go 1.17 | ||
|
||
require ( | ||
github.com/go-playground/validator/v10 v10.9.0 | ||
github.com/spf13/cobra v1.2.1 | ||
) | ||
go 1.16 | ||
|
||
require ( | ||
github.com/eapache/go-resiliency v1.2.0 | ||
github.com/elazarl/goproxy v0.0.0-20210801061803-8e322dfb79c4 | ||
github.com/elazarl/goproxy/ext v0.0.0-20210801061803-8e322dfb79c4 | ||
github.com/go-playground/locales v0.14.0 // indirect | ||
github.com/go-playground/universal-translator v0.18.0 // indirect | ||
github.com/inconshreveable/mousetrap v1.0.0 // indirect | ||
github.com/leodido/go-urn v1.2.1 // indirect | ||
github.com/elazarl/goproxy v0.0.0-20220115173737-adb46da277ac | ||
github.com/elazarl/goproxy/ext v0.0.0-20220115173737-adb46da277ac | ||
github.com/go-playground/validator/v10 v10.10.0 | ||
github.com/saucelabs/customerror v0.0.2 | ||
github.com/saucelabs/pacman v0.0.10 | ||
github.com/saucelabs/pacman v0.0.12 | ||
github.com/saucelabs/randomness v0.0.4 | ||
github.com/saucelabs/sypl v1.5.5 | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519 // indirect | ||
golang.org/x/sys v0.0.0-20211029165221-6e7872819dc8 // indirect | ||
golang.org/x/text v0.3.7 // indirect | ||
) | ||
|
||
require ( | ||
github.com/acarl005/stripansi v0.0.0-20180116102854-5a71ef0e047d // indirect | ||
github.com/dlclark/regexp2 v1.4.1-0.20201116162257-a2a8dda75c91 // indirect | ||
github.com/dop251/goja v0.0.0-20211022113120-dc8c55024d06 // indirect | ||
github.com/emirpasic/gods v1.12.0 // indirect | ||
github.com/fatih/color v1.13.0 // indirect | ||
github.com/go-sourcemap/sourcemap v2.1.3+incompatible // indirect | ||
github.com/google/uuid v1.3.0 // indirect | ||
github.com/mattn/go-colorable v0.1.11 // indirect | ||
github.com/mattn/go-isatty v0.0.14 // indirect | ||
github.com/saucelabs/lumberjack/v3 v3.0.2 // indirect | ||
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c // indirect | ||
github.com/saucelabs/sypl v1.5.8 | ||
github.com/spf13/cobra v1.3.0 | ||
) |
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