File tree 1 file changed +15
-0
lines changed
1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -80,11 +80,26 @@ jobs:
80
80
- uses : hashicorp/setup-terraform@v2
81
81
with :
82
82
terraform_version : ${{ steps.setup-env.outputs.terraform-version }}
83
+ - name : Install go-critic
84
+ env :
85
+ PACKAGE_URL : github.com/go-critic/go-critic/cmd/gocritic
86
+ PACKAGE_VERSION : ${{ steps.setup-env.outputs.go-critic-version }}
87
+ run : go install ${PACKAGE_URL}@${PACKAGE_VERSION}
88
+ - name : Install gosec
89
+ env :
90
+ PACKAGE_URL : github.com/securego/gosec/v2/cmd/gosec
91
+ PACKAGE_VERSION : ${{ steps.setup-env.outputs.gosec-version }}
92
+ run : go install ${PACKAGE_URL}@${PACKAGE_VERSION}
83
93
- name : Install shfmt
84
94
env :
85
95
PACKAGE_URL : mvdan.cc/sh/v3/cmd/shfmt
86
96
PACKAGE_VERSION : ${{ steps.setup-env.outputs.shfmt-version }}
87
97
run : go install ${PACKAGE_URL}@${PACKAGE_VERSION}
98
+ - name : Install staticcheck
99
+ env :
100
+ PACKAGE_URL : honnef.co/go/tools/cmd/staticcheck
101
+ PACKAGE_VERSION : ${{ steps.setup-env.outputs.staticcheck-version }}
102
+ run : go install ${PACKAGE_URL}@${PACKAGE_VERSION}
88
103
- name : Install Terraform-docs
89
104
env :
90
105
PACKAGE_URL : github.com/terraform-docs/terraform-docs
You can’t perform that action at this time.
0 commit comments