From 7603f9395afd24a2ddc0acee49862a6a2a35a737 Mon Sep 17 00:00:00 2001 From: Darius Rapalis Date: Sun, 16 Mar 2025 13:42:59 +0200 Subject: [PATCH] security checks --- .github/workflows/ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6184eab..73a0e7b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,9 +18,15 @@ jobs: with: go-version: "1.23.0" + - name: Install gosec + run: go install github.com/securego/gosec/v2/cmd/gosec@latest + - name: Tests run: go test ./... -cover + - name: Security Checks + run: gosec ./... + style: name: Style runs-on: ubuntu-latest