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