├── .github ├── .editorconfig └── workflows │ ├── build.yml │ └── lint.yml ├── .gitignore ├── .golangci.yml ├── .revive.toml ├── Dockerfile ├── LICENSE ├── README.md ├── action.yaml ├── entrypoint.sh ├── go.mod ├── go.sum └── main.go /.github/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matoous/golangci-lint-action/HEAD/.github/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matoous/golangci-lint-action/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matoous/golangci-lint-action/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matoous/golangci-lint-action/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matoous/golangci-lint-action/HEAD/.golangci.yml -------------------------------------------------------------------------------- /.revive.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matoous/golangci-lint-action/HEAD/.revive.toml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matoous/golangci-lint-action/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matoous/golangci-lint-action/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matoous/golangci-lint-action/HEAD/README.md -------------------------------------------------------------------------------- /action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matoous/golangci-lint-action/HEAD/action.yaml -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matoous/golangci-lint-action/HEAD/entrypoint.sh -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matoous/golangci-lint-action/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matoous/golangci-lint-action/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matoous/golangci-lint-action/HEAD/main.go --------------------------------------------------------------------------------