From f659467d0009de98e163b29347f84c9c55e7e610 Mon Sep 17 00:00:00 2001 From: jake Date: Thu, 24 Apr 2025 13:06:33 -0400 Subject: [PATCH] failure tests --- .gitea/workflows/test.yaml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .gitea/workflows/test.yaml diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml new file mode 100644 index 0000000..dccb989 --- /dev/null +++ b/.gitea/workflows/test.yaml @@ -0,0 +1,17 @@ +name: "test scans" +on: push #runs on pushes to any branch + +jobs: + scans: + runs-on: smoke-test + steps: + - name: "dependency and stdlib scan" + uses: golang/govulncheck-action@v1.0.4 + with: + go-package: ./... + go-version-file: go.mod + + - name: "static code analysis" + uses: securego/gosec@v2.22.3 + with: + args: ./... \ No newline at end of file