Skip to content
This repository has been archived by the owner on May 2, 2023. It is now read-only.

fishbrain/golang-github-actions

ย 
ย 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

31 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

Golang GitHub Actions

Actions

Fmt Action

Runs gofmt and comments back on error. Fmt Action

Vet Action

Runs go vet and comments back on error. Vet Action

Shadow Action

Runs go vet --vettool=/go/bin/shadow and comments back on error.
Use golang.org/x/tools/go/analysis/passes/shadow/cmd/shadow

Imports Action

Runs goimports and comments back on error.
Use golang.org/x/tools/cmd/goimports Imports Action

Lint Action

Runs golint and comments back on error.
Use golang.org/x/lint/golint Lint Action

Staticcheck Action

Runs staticcheck and comments back on error.
Use honnef.co/go/tools/cmd/staticcheck Staticcheck Action

Errcheck Action

Runs errcheck and comments back on error.
Use github.com/kisielk/errcheck Errcheck Action

Sec Action

Runs gosec and comments back on error.
Use github.com/securego/gosec/cmd/gosec Sec Action

Sample Workflow

.github/main.workflow

workflow "Golang Test Workflow" {
  on = "pull_request"
  resolves = [
    "go imports",
    "go vet",
    "staticcheck",
    "errcheck",
    "go sec",
  ]
}

action "filter to pr open synced" {
  uses = "actions/bin/filter@master"
  args = "action 'opened|synchronize'"
}

action "go imports" {
  uses = "grandcolline/golang-github-actions/imports@v0.2.0"
  needs = "filter to pr open synced"
  secrets = ["GITHUB_TOKEN"]
}

action "go lint" {
  uses = "grandcolline/golang-github-actions/lint@v0.2.0"
  needs = "filter to pr open synced"
  secrets = ["GITHUB_TOKEN"]
}

action "go vet" {
  uses = "grandcolline/golang-github-actions/vet@v0.2.0"
  needs = "filter to pr open synced"
  secrets = ["GITHUB_TOKEN"]
}

action "shadow" {
  uses = "grandcolline/golang-github-actions/shadow@v0.2.0"
  needs = "filter to pr open synced"
  secrets = ["GITHUB_TOKEN"]
}

action "staticcheck" {
  uses = "grandcolline/golang-github-actions/staticcheck@v0.2.0"
  needs = "filter to pr open synced"
  secrets = ["GITHUB_TOKEN"]
}

action "errcheck" {
  uses = "grandcolline/golang-github-actions/errcheck@v0.2.0"
  needs = "filter to pr open synced"
  secrets = ["GITHUB_TOKEN"]
  env = {
    IGNORE_DEFER = "true"
  }
}

action "go sec" {
  uses = "grandcolline/golang-github-actions/sec@v0.2.0"
  needs = "filter to pr open synced"
  secrets = ["GITHUB_TOKEN"]
  env = {
    FLAGS = "-exclude=G104"
  }
}

About

GitHub Actions for Golang ๐Ÿ™

Topics

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Languages

  • Shell 61.4%
  • Dockerfile 38.6%