Skip to content

Commit

Permalink
Create mobsf.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
GeekMasher authored May 10, 2021
1 parent 0e8aa6a commit ba06416
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/mobsf.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: MobSF

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

workflow_dispatch:

jobs:
mobile-security:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Setup python
uses: actions/setup-python@v2
with:
python-version: 3.8

- name: mobsfscan
uses: MobSF/mobsfscan@main
with:
args: . --sarif --output results.sarif || true

- name: Upload mobsfscan report
uses: github/codeql-action/upload-sarif@v1
with:
sarif_file: results.sarif

0 comments on commit ba06416

Please sign in to comment.