diff options
Diffstat (limited to '.github/workflows')
-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 |