Skip to content

Commit 9dd48d5

Browse files
Add GoSec workflow
1 parent 09eff23 commit 9dd48d5

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

.github/workflows/gosec.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Gosec
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
pull_request:
8+
branches:
9+
- master
10+
11+
jobs:
12+
scan:
13+
runs-on: ubuntu-latest
14+
env:
15+
GO111MODULE: on
16+
steps:
17+
- uses: actions/checkout@v2
18+
- uses: securego/gosec@master
19+
with:
20+
args: ./...

0 commit comments

Comments
 (0)