File tree Expand file tree Collapse file tree 1 file changed +12
-6
lines changed
Expand file tree Collapse file tree 1 file changed +12
-6
lines changed Original file line number Diff line number Diff line change 1919 run : |
2020 # Upgrade pip and install security/linting tools
2121 python -m pip install --upgrade pip
22- pip install bandit detect-secrets flake8 flake8-json
22+ pip install bandit detect-secrets
23+
24+ # - name: Install dependencies
25+ # run: |
26+ # # Upgrade pip and install security/linting tools
27+ # python -m pip install --upgrade pip
28+ # pip install bandit detect-secrets flake8 flake8-json
2329
2430 - name : Run Bandit (Security Scan)
2531 # Scan the mergin folder for vulnerabilities, excluding the test directory
2935 # Scan the plugin directory for hardcoded secrets/credentials
3036 run : detect-secrets scan ./mergin/ --all-files
3137
32- - name : Run Flake8 (Style Check)
33- # Style enforcement using MerginMaps standards
34- # Ignoring E501 (line length) and W503 (operator line breaks)
35- run : |
36- flake8 ./mergin/ --max-line-length=120 --ignore=E501,W503 --exclude=test
38+ # - name: Run Flake8 (Style Check)
39+ # # Style enforcement using MerginMaps standards
40+ # # Ignoring E501 (line length) and W503 (operator line breaks)
41+ # run: |
42+ # flake8 ./mergin/ --max-line-length=120 --ignore=E501,W503 --exclude=test
You can’t perform that action at this time.
0 commit comments