diff options
author | Steve Moyer <smoyer1@selesy.com> | 2022-09-08 17:28:59 -0400 |
---|---|---|
committer | Steve Moyer <smoyer1@selesy.com> | 2022-09-08 17:28:59 -0400 |
commit | 3087cdc013cf002c6644f2c3b8cc13d748c80783 (patch) | |
tree | aaa9ca79e1b8e2c21eabae286c7f02987c03ed3c /.github/workflows/go.yml | |
parent | ec7395589d66b0014506a7ff2908dc206ec18f89 (diff) | |
download | git-bug-3087cdc013cf002c6644f2c3b8cc13d748c80783.tar.gz |
feat: run security checks during Go workflow
Diffstat (limited to '.github/workflows/go.yml')
-rw-r--r-- | .github/workflows/go.yml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 7846a1d6..8d41852c 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -53,3 +53,6 @@ jobs: - name: Check Code Formatting run: find . -name "*.go" | while read line; do [ -z "$(gofmt -d "$line" | head)" ] || exit 1; done + + - name: Check Security (vulnerable dependencies and insecure practices) + run: make secure |