Skip to content

Commit

Permalink
ci: add gosec
Browse files Browse the repository at this point in the history
  • Loading branch information
cfabianski authored Aug 25, 2023
1 parent 9d3698f commit 9b5c126
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/gosec.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Run Gosec

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
tests:
runs-on: ubuntu-latest
env:
GO111MODULE: on
steps:
- name: Checkout Source
uses: actions/checkout@v3
- name: Run Gosec Security Scanner
uses: securego/gosec@master
with:
args: ./...

0 comments on commit 9b5c126

Please sign in to comment.