├── .dockerfile_lint ├── default_rules.yaml └── github_actions.yaml ├── .github ├── CODEOWNERS └── workflows │ ├── pull_request.yml │ ├── push.yml │ └── release.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── action.yml ├── docker.mk ├── entrypoint.sh ├── go1.10 ├── Dockerfile ├── action.yml └── entrypoint.sh ├── go1.11 ├── Dockerfile ├── action.yml └── entrypoint.sh ├── go1.12 ├── Dockerfile ├── action.yml └── entrypoint.sh ├── go1.13 ├── Dockerfile ├── action.yml └── entrypoint.sh ├── go1.14 ├── Dockerfile └── entrypoint.sh ├── go1.15 ├── Dockerfile └── entrypoint.sh ├── go1.16 ├── Dockerfile └── entrypoint.sh ├── help.mk ├── shell.mk └── tests └── projects ├── go_dep ├── .gitignore ├── Gopkg.lock ├── Gopkg.toml ├── LICENSE ├── cmd │ └── root.go ├── main.go └── main_test.go ├── go_dep_vendored ├── .gitignore ├── Gopkg.lock ├── Gopkg.toml ├── LICENSE ├── cmd │ └── root.go ├── main.go ├── main_test.go └── vendor │ ├── golang.org │ └── x │ │ └── text │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── internal │ │ └── tag │ │ │ └── tag.go │ │ ├── language │ │ ├── Makefile │ │ ├── common.go │ │ ├── coverage.go │ │ ├── doc.go │ │ ├── gen.go │ │ ├── gen_common.go │ │ ├── gen_index.go │ │ ├── go1_1.go │ │ ├── go1_2.go │ │ ├── index.go │ │ ├── language.go │ │ ├── lookup.go │ │ ├── match.go │ │ ├── parse.go │ │ ├── tables.go │ │ └── tags.go │ │ └── unicode │ │ └── cldr │ │ ├── base.go │ │ ├── cldr.go │ │ ├── collate.go │ │ ├── decode.go │ │ ├── makexml.go │ │ ├── resolve.go │ │ ├── slice.go │ │ └── xml.go │ └── rsc.io │ ├── quote │ ├── LICENSE │ ├── README.md │ ├── go.mod │ └── quote.go │ └── sampler │ ├── LICENSE │ ├── go.mod │ ├── hello.go │ └── sampler.go ├── go_modules ├── LICENSE ├── cmd │ └── root.go ├── go.mod ├── go.sum ├── main.go └── main_test.go ├── go_modules_vendored ├── .gitignore ├── LICENSE ├── cmd │ └── root.go ├── go.mod ├── go.sum ├── main.go ├── main_test.go └── vendor │ ├── golang.org │ └── x │ │ └── text │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── LICENSE │ │ ├── PATENTS │ │ ├── internal │ │ └── tag │ │ │ └── tag.go │ │ └── language │ │ ├── Makefile │ │ ├── common.go │ │ ├── coverage.go │ │ ├── doc.go │ │ ├── gen.go │ │ ├── gen_common.go │ │ ├── gen_index.go │ │ ├── go1_1.go │ │ ├── go1_2.go │ │ ├── index.go │ │ ├── language.go │ │ ├── lookup.go │ │ ├── match.go │ │ ├── parse.go │ │ ├── tables.go │ │ └── tags.go │ ├── modules.txt │ └── rsc.io │ ├── quote │ ├── LICENSE │ ├── README.md │ ├── go.mod │ └── quote.go │ └── sampler │ ├── LICENSE │ ├── go.mod │ ├── hello.go │ └── sampler.go └── go_standard ├── .gitignore ├── go.mod ├── main.go └── main_test.go /.dockerfile_lint/default_rules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/.dockerfile_lint/default_rules.yaml -------------------------------------------------------------------------------- /.dockerfile_lint/github_actions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/.dockerfile_lint/github_actions.yaml -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @cedrickring @dougnukem 2 | -------------------------------------------------------------------------------- /.github/workflows/pull_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/.github/workflows/pull_request.yml -------------------------------------------------------------------------------- /.github/workflows/push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/.github/workflows/push.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/action.yml -------------------------------------------------------------------------------- /docker.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/docker.mk -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/entrypoint.sh -------------------------------------------------------------------------------- /go1.10/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/go1.10/Dockerfile -------------------------------------------------------------------------------- /go1.10/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/go1.10/action.yml -------------------------------------------------------------------------------- /go1.10/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/go1.10/entrypoint.sh -------------------------------------------------------------------------------- /go1.11/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/go1.11/Dockerfile -------------------------------------------------------------------------------- /go1.11/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/go1.11/action.yml -------------------------------------------------------------------------------- /go1.11/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/go1.11/entrypoint.sh -------------------------------------------------------------------------------- /go1.12/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/go1.12/Dockerfile -------------------------------------------------------------------------------- /go1.12/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/go1.12/action.yml -------------------------------------------------------------------------------- /go1.12/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/go1.12/entrypoint.sh -------------------------------------------------------------------------------- /go1.13/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/go1.13/Dockerfile -------------------------------------------------------------------------------- /go1.13/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/go1.13/action.yml -------------------------------------------------------------------------------- /go1.13/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/go1.13/entrypoint.sh -------------------------------------------------------------------------------- /go1.14/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/go1.14/Dockerfile -------------------------------------------------------------------------------- /go1.14/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/go1.14/entrypoint.sh -------------------------------------------------------------------------------- /go1.15/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/go1.15/Dockerfile -------------------------------------------------------------------------------- /go1.15/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/go1.15/entrypoint.sh -------------------------------------------------------------------------------- /go1.16/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/go1.16/Dockerfile -------------------------------------------------------------------------------- /go1.16/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/go1.16/entrypoint.sh -------------------------------------------------------------------------------- /help.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/help.mk -------------------------------------------------------------------------------- /shell.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/shell.mk -------------------------------------------------------------------------------- /tests/projects/go_dep/.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/* 2 | go_dep 3 | -------------------------------------------------------------------------------- /tests/projects/go_dep/Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_dep/Gopkg.lock -------------------------------------------------------------------------------- /tests/projects/go_dep/Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_dep/Gopkg.toml -------------------------------------------------------------------------------- /tests/projects/go_dep/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_dep/LICENSE -------------------------------------------------------------------------------- /tests/projects/go_dep/cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_dep/cmd/root.go -------------------------------------------------------------------------------- /tests/projects/go_dep/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_dep/main.go -------------------------------------------------------------------------------- /tests/projects/go_dep/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_dep/main_test.go -------------------------------------------------------------------------------- /tests/projects/go_dep_vendored/.gitignore: -------------------------------------------------------------------------------- 1 | go_dep_vendored 2 | -------------------------------------------------------------------------------- /tests/projects/go_dep_vendored/Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_dep_vendored/Gopkg.lock -------------------------------------------------------------------------------- /tests/projects/go_dep_vendored/Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_dep_vendored/Gopkg.toml -------------------------------------------------------------------------------- /tests/projects/go_dep_vendored/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_dep_vendored/LICENSE -------------------------------------------------------------------------------- /tests/projects/go_dep_vendored/cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_dep_vendored/cmd/root.go -------------------------------------------------------------------------------- /tests/projects/go_dep_vendored/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_dep_vendored/main.go -------------------------------------------------------------------------------- /tests/projects/go_dep_vendored/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_dep_vendored/main_test.go -------------------------------------------------------------------------------- /tests/projects/go_dep_vendored/vendor/golang.org/x/text/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_dep_vendored/vendor/golang.org/x/text/AUTHORS -------------------------------------------------------------------------------- /tests/projects/go_dep_vendored/vendor/golang.org/x/text/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_dep_vendored/vendor/golang.org/x/text/CONTRIBUTORS -------------------------------------------------------------------------------- /tests/projects/go_dep_vendored/vendor/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_dep_vendored/vendor/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /tests/projects/go_dep_vendored/vendor/golang.org/x/text/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_dep_vendored/vendor/golang.org/x/text/PATENTS -------------------------------------------------------------------------------- /tests/projects/go_dep_vendored/vendor/golang.org/x/text/internal/tag/tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_dep_vendored/vendor/golang.org/x/text/internal/tag/tag.go -------------------------------------------------------------------------------- /tests/projects/go_dep_vendored/vendor/golang.org/x/text/language/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_dep_vendored/vendor/golang.org/x/text/language/Makefile -------------------------------------------------------------------------------- /tests/projects/go_dep_vendored/vendor/golang.org/x/text/language/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_dep_vendored/vendor/golang.org/x/text/language/common.go -------------------------------------------------------------------------------- /tests/projects/go_dep_vendored/vendor/golang.org/x/text/language/coverage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_dep_vendored/vendor/golang.org/x/text/language/coverage.go -------------------------------------------------------------------------------- /tests/projects/go_dep_vendored/vendor/golang.org/x/text/language/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_dep_vendored/vendor/golang.org/x/text/language/doc.go -------------------------------------------------------------------------------- /tests/projects/go_dep_vendored/vendor/golang.org/x/text/language/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_dep_vendored/vendor/golang.org/x/text/language/gen.go -------------------------------------------------------------------------------- /tests/projects/go_dep_vendored/vendor/golang.org/x/text/language/gen_common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_dep_vendored/vendor/golang.org/x/text/language/gen_common.go -------------------------------------------------------------------------------- /tests/projects/go_dep_vendored/vendor/golang.org/x/text/language/gen_index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_dep_vendored/vendor/golang.org/x/text/language/gen_index.go -------------------------------------------------------------------------------- /tests/projects/go_dep_vendored/vendor/golang.org/x/text/language/go1_1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_dep_vendored/vendor/golang.org/x/text/language/go1_1.go -------------------------------------------------------------------------------- /tests/projects/go_dep_vendored/vendor/golang.org/x/text/language/go1_2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_dep_vendored/vendor/golang.org/x/text/language/go1_2.go -------------------------------------------------------------------------------- /tests/projects/go_dep_vendored/vendor/golang.org/x/text/language/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_dep_vendored/vendor/golang.org/x/text/language/index.go -------------------------------------------------------------------------------- /tests/projects/go_dep_vendored/vendor/golang.org/x/text/language/language.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_dep_vendored/vendor/golang.org/x/text/language/language.go -------------------------------------------------------------------------------- /tests/projects/go_dep_vendored/vendor/golang.org/x/text/language/lookup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_dep_vendored/vendor/golang.org/x/text/language/lookup.go -------------------------------------------------------------------------------- /tests/projects/go_dep_vendored/vendor/golang.org/x/text/language/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_dep_vendored/vendor/golang.org/x/text/language/match.go -------------------------------------------------------------------------------- /tests/projects/go_dep_vendored/vendor/golang.org/x/text/language/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_dep_vendored/vendor/golang.org/x/text/language/parse.go -------------------------------------------------------------------------------- /tests/projects/go_dep_vendored/vendor/golang.org/x/text/language/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_dep_vendored/vendor/golang.org/x/text/language/tables.go -------------------------------------------------------------------------------- /tests/projects/go_dep_vendored/vendor/golang.org/x/text/language/tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_dep_vendored/vendor/golang.org/x/text/language/tags.go -------------------------------------------------------------------------------- /tests/projects/go_dep_vendored/vendor/golang.org/x/text/unicode/cldr/base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_dep_vendored/vendor/golang.org/x/text/unicode/cldr/base.go -------------------------------------------------------------------------------- /tests/projects/go_dep_vendored/vendor/golang.org/x/text/unicode/cldr/cldr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_dep_vendored/vendor/golang.org/x/text/unicode/cldr/cldr.go -------------------------------------------------------------------------------- /tests/projects/go_dep_vendored/vendor/golang.org/x/text/unicode/cldr/collate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_dep_vendored/vendor/golang.org/x/text/unicode/cldr/collate.go -------------------------------------------------------------------------------- /tests/projects/go_dep_vendored/vendor/golang.org/x/text/unicode/cldr/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_dep_vendored/vendor/golang.org/x/text/unicode/cldr/decode.go -------------------------------------------------------------------------------- /tests/projects/go_dep_vendored/vendor/golang.org/x/text/unicode/cldr/makexml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_dep_vendored/vendor/golang.org/x/text/unicode/cldr/makexml.go -------------------------------------------------------------------------------- /tests/projects/go_dep_vendored/vendor/golang.org/x/text/unicode/cldr/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_dep_vendored/vendor/golang.org/x/text/unicode/cldr/resolve.go -------------------------------------------------------------------------------- /tests/projects/go_dep_vendored/vendor/golang.org/x/text/unicode/cldr/slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_dep_vendored/vendor/golang.org/x/text/unicode/cldr/slice.go -------------------------------------------------------------------------------- /tests/projects/go_dep_vendored/vendor/golang.org/x/text/unicode/cldr/xml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_dep_vendored/vendor/golang.org/x/text/unicode/cldr/xml.go -------------------------------------------------------------------------------- /tests/projects/go_dep_vendored/vendor/rsc.io/quote/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_dep_vendored/vendor/rsc.io/quote/LICENSE -------------------------------------------------------------------------------- /tests/projects/go_dep_vendored/vendor/rsc.io/quote/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_dep_vendored/vendor/rsc.io/quote/README.md -------------------------------------------------------------------------------- /tests/projects/go_dep_vendored/vendor/rsc.io/quote/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_dep_vendored/vendor/rsc.io/quote/go.mod -------------------------------------------------------------------------------- /tests/projects/go_dep_vendored/vendor/rsc.io/quote/quote.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_dep_vendored/vendor/rsc.io/quote/quote.go -------------------------------------------------------------------------------- /tests/projects/go_dep_vendored/vendor/rsc.io/sampler/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_dep_vendored/vendor/rsc.io/sampler/LICENSE -------------------------------------------------------------------------------- /tests/projects/go_dep_vendored/vendor/rsc.io/sampler/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_dep_vendored/vendor/rsc.io/sampler/go.mod -------------------------------------------------------------------------------- /tests/projects/go_dep_vendored/vendor/rsc.io/sampler/hello.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_dep_vendored/vendor/rsc.io/sampler/hello.go -------------------------------------------------------------------------------- /tests/projects/go_dep_vendored/vendor/rsc.io/sampler/sampler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_dep_vendored/vendor/rsc.io/sampler/sampler.go -------------------------------------------------------------------------------- /tests/projects/go_modules/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_modules/LICENSE -------------------------------------------------------------------------------- /tests/projects/go_modules/cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_modules/cmd/root.go -------------------------------------------------------------------------------- /tests/projects/go_modules/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_modules/go.mod -------------------------------------------------------------------------------- /tests/projects/go_modules/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_modules/go.sum -------------------------------------------------------------------------------- /tests/projects/go_modules/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_modules/main.go -------------------------------------------------------------------------------- /tests/projects/go_modules/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_modules/main_test.go -------------------------------------------------------------------------------- /tests/projects/go_modules_vendored/.gitignore: -------------------------------------------------------------------------------- 1 | go_modules_vendored 2 | -------------------------------------------------------------------------------- /tests/projects/go_modules_vendored/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_modules_vendored/LICENSE -------------------------------------------------------------------------------- /tests/projects/go_modules_vendored/cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_modules_vendored/cmd/root.go -------------------------------------------------------------------------------- /tests/projects/go_modules_vendored/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_modules_vendored/go.mod -------------------------------------------------------------------------------- /tests/projects/go_modules_vendored/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_modules_vendored/go.sum -------------------------------------------------------------------------------- /tests/projects/go_modules_vendored/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_modules_vendored/main.go -------------------------------------------------------------------------------- /tests/projects/go_modules_vendored/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_modules_vendored/main_test.go -------------------------------------------------------------------------------- /tests/projects/go_modules_vendored/vendor/golang.org/x/text/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_modules_vendored/vendor/golang.org/x/text/AUTHORS -------------------------------------------------------------------------------- /tests/projects/go_modules_vendored/vendor/golang.org/x/text/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_modules_vendored/vendor/golang.org/x/text/CONTRIBUTORS -------------------------------------------------------------------------------- /tests/projects/go_modules_vendored/vendor/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_modules_vendored/vendor/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /tests/projects/go_modules_vendored/vendor/golang.org/x/text/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_modules_vendored/vendor/golang.org/x/text/PATENTS -------------------------------------------------------------------------------- /tests/projects/go_modules_vendored/vendor/golang.org/x/text/internal/tag/tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_modules_vendored/vendor/golang.org/x/text/internal/tag/tag.go -------------------------------------------------------------------------------- /tests/projects/go_modules_vendored/vendor/golang.org/x/text/language/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_modules_vendored/vendor/golang.org/x/text/language/Makefile -------------------------------------------------------------------------------- /tests/projects/go_modules_vendored/vendor/golang.org/x/text/language/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_modules_vendored/vendor/golang.org/x/text/language/common.go -------------------------------------------------------------------------------- /tests/projects/go_modules_vendored/vendor/golang.org/x/text/language/coverage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_modules_vendored/vendor/golang.org/x/text/language/coverage.go -------------------------------------------------------------------------------- /tests/projects/go_modules_vendored/vendor/golang.org/x/text/language/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_modules_vendored/vendor/golang.org/x/text/language/doc.go -------------------------------------------------------------------------------- /tests/projects/go_modules_vendored/vendor/golang.org/x/text/language/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_modules_vendored/vendor/golang.org/x/text/language/gen.go -------------------------------------------------------------------------------- /tests/projects/go_modules_vendored/vendor/golang.org/x/text/language/gen_common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_modules_vendored/vendor/golang.org/x/text/language/gen_common.go -------------------------------------------------------------------------------- /tests/projects/go_modules_vendored/vendor/golang.org/x/text/language/gen_index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_modules_vendored/vendor/golang.org/x/text/language/gen_index.go -------------------------------------------------------------------------------- /tests/projects/go_modules_vendored/vendor/golang.org/x/text/language/go1_1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_modules_vendored/vendor/golang.org/x/text/language/go1_1.go -------------------------------------------------------------------------------- /tests/projects/go_modules_vendored/vendor/golang.org/x/text/language/go1_2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_modules_vendored/vendor/golang.org/x/text/language/go1_2.go -------------------------------------------------------------------------------- /tests/projects/go_modules_vendored/vendor/golang.org/x/text/language/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_modules_vendored/vendor/golang.org/x/text/language/index.go -------------------------------------------------------------------------------- /tests/projects/go_modules_vendored/vendor/golang.org/x/text/language/language.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_modules_vendored/vendor/golang.org/x/text/language/language.go -------------------------------------------------------------------------------- /tests/projects/go_modules_vendored/vendor/golang.org/x/text/language/lookup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_modules_vendored/vendor/golang.org/x/text/language/lookup.go -------------------------------------------------------------------------------- /tests/projects/go_modules_vendored/vendor/golang.org/x/text/language/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_modules_vendored/vendor/golang.org/x/text/language/match.go -------------------------------------------------------------------------------- /tests/projects/go_modules_vendored/vendor/golang.org/x/text/language/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_modules_vendored/vendor/golang.org/x/text/language/parse.go -------------------------------------------------------------------------------- /tests/projects/go_modules_vendored/vendor/golang.org/x/text/language/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_modules_vendored/vendor/golang.org/x/text/language/tables.go -------------------------------------------------------------------------------- /tests/projects/go_modules_vendored/vendor/golang.org/x/text/language/tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_modules_vendored/vendor/golang.org/x/text/language/tags.go -------------------------------------------------------------------------------- /tests/projects/go_modules_vendored/vendor/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_modules_vendored/vendor/modules.txt -------------------------------------------------------------------------------- /tests/projects/go_modules_vendored/vendor/rsc.io/quote/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_modules_vendored/vendor/rsc.io/quote/LICENSE -------------------------------------------------------------------------------- /tests/projects/go_modules_vendored/vendor/rsc.io/quote/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_modules_vendored/vendor/rsc.io/quote/README.md -------------------------------------------------------------------------------- /tests/projects/go_modules_vendored/vendor/rsc.io/quote/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_modules_vendored/vendor/rsc.io/quote/go.mod -------------------------------------------------------------------------------- /tests/projects/go_modules_vendored/vendor/rsc.io/quote/quote.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_modules_vendored/vendor/rsc.io/quote/quote.go -------------------------------------------------------------------------------- /tests/projects/go_modules_vendored/vendor/rsc.io/sampler/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_modules_vendored/vendor/rsc.io/sampler/LICENSE -------------------------------------------------------------------------------- /tests/projects/go_modules_vendored/vendor/rsc.io/sampler/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_modules_vendored/vendor/rsc.io/sampler/go.mod -------------------------------------------------------------------------------- /tests/projects/go_modules_vendored/vendor/rsc.io/sampler/hello.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_modules_vendored/vendor/rsc.io/sampler/hello.go -------------------------------------------------------------------------------- /tests/projects/go_modules_vendored/vendor/rsc.io/sampler/sampler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_modules_vendored/vendor/rsc.io/sampler/sampler.go -------------------------------------------------------------------------------- /tests/projects/go_standard/.gitignore: -------------------------------------------------------------------------------- 1 | go_standard 2 | -------------------------------------------------------------------------------- /tests/projects/go_standard/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/cedrickring/golang-action 2 | 3 | go 1.16 4 | -------------------------------------------------------------------------------- /tests/projects/go_standard/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_standard/main.go -------------------------------------------------------------------------------- /tests/projects/go_standard/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickring/golang-action/HEAD/tests/projects/go_standard/main_test.go --------------------------------------------------------------------------------