Skip to content

Commit e597217

Browse files
committed
Add static analysis tool mobsfscan
1 parent 285cf6f commit e597217

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed
+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
---
2+
name: Android - mobsfscan
3+
on:
4+
pull_request:
5+
paths:
6+
- .github/workflows/android-mobsfscan.yml
7+
- android/**
8+
workflow_dispatch:
9+
jobs:
10+
mobsfscan:
11+
name: mobsfscan code scanning
12+
runs-on: ubuntu-latest
13+
steps:
14+
- name: Checkout repository
15+
uses: actions/checkout@v3
16+
17+
- name: mobsfscan
18+
uses: MobSF/mobsfscan@main
19+
with:
20+
args: '--type android --html --output mobsfscan-report.html android'
21+
22+
- name: Upload report
23+
uses: actions/upload-artifact@v3
24+
with:
25+
name: mobsfscan-report
26+
path: mobsfscan-report.html
27+
if-no-files-found: error
28+
retention-days: 7

0 commit comments

Comments
 (0)