Add static analysis tool mobsfscan #1
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Android - mobsfscan | |
on: | |
pull_request: | |
paths: | |
- .github/workflows/android-mobsfscan.yml | |
- android/** | |
workflow_dispatch: | |
jobs: | |
mobsfscan: | |
name: mobsfscan code scanning | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: mobsfscan | |
uses: MobSF/mobsfscan@main | |
with: | |
args: '--type android --html --output mobsfscan-report.html android' | |
- name: Upload report | |
uses: actions/upload-artifact@v3 | |
with: | |
name: mobsfscan-report | |
path: mobsfscan-report.html | |
if-no-files-found: error | |
retention-days: 7 |