github.com/KEINOS/go-countline@v1.1.0/.github/workflows/README.md (about) 1 # Workflow/Actions to Automate 2 3 - [codeQL-analysis.yml](codeQL-analysis.yml) (on push): 4 - Runs [CodeQL](https://codeql.github.com/docs/codeql-overview/about-codeql/) action to check known-vulnerability and scan security in Go code. 5 - See: [Configuring code scanning](https://docs.github.com/en/free-pro-team@latest/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#changing-the-languages-that-are-analyzed) @ docs.github.com 6 - [golangci-lint.yaml](golangci-lint.yaml) (on push): 7 - Runs static analysis via `golangci-lint run`. 8 - The contents of the test see: [.golangci.yml](../../.golangci.yml) 9 - [platform-test.yaml](platform-test.yaml) (on push): 10 - Runs `go test -race ./...` on Ubuntu, macOS and Windows. 11 - [update-codecov.yaml](update-codecov.yaml) (on release): 12 - Posts the coverage results to codecov.io. 13 - [version-tests.yaml](version-tests.yaml) (push): 14 - Runs `go test ./...` on vaious Go versions. Go 1.16 to the latest.