From 1c6692d3b097dd5f09c84ce4d61d7118b22588f9 Mon Sep 17 00:00:00 2001 From: "sweep-ai[bot]" <128439645+sweep-ai[bot]@users.noreply.github.com> Date: Thu, 28 Dec 2023 14:19:17 +0000 Subject: [PATCH] feat: Add GitHub Actions workflow for security che --- .github/workflows/security_check.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/security_check.yml diff --git a/.github/workflows/security_check.yml b/.github/workflows/security_check.yml new file mode 100644 index 0000000..17402e4 --- /dev/null +++ b/.github/workflows/security_check.yml @@ -0,0 +1,18 @@ +name: Security Check + +on: [push, pull_request] + +jobs: + security-check: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: Setup Go + uses: actions/setup-go@v2 + with: + go-version: 1.16 + + - name: Run security check + run: make security-check