Skip to content

Commit

Permalink
feat: Add GitHub Actions workflow for security che
Browse files Browse the repository at this point in the history
  • Loading branch information
sweep-ai[bot] authored Dec 28, 2023
1 parent f6e071f commit 1c6692d
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/security_check.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 1c6692d

Please sign in to comment.