We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f98e22e commit 0be79faCopy full SHA for 0be79fa
1 file changed
.github/workflows/security_check.yml
@@ -19,7 +19,7 @@ jobs:
19
run: |
20
# Upgrade pip and install security/linting tools
21
python -m pip install --upgrade pip
22
- pip install bandit detect-secrets flake8 flake8-json ruff
+ pip install bandit detect-secrets flake8 flake8-json
23
24
- name: Run Bandit (Security Scan)
25
# Scan the mergin folder for vulnerabilities, excluding the test directory
@@ -29,10 +29,6 @@ jobs:
29
# Scan the plugin directory for hardcoded secrets/credentials
30
run: detect-secrets scan ./mergin/ --all-files
31
32
- - name: Run Ruff (Linting)
33
- # Excluding mergin/test
34
- run: ruff check ./mergin/ --line-length 120 --exclude mergin/test
35
-
36
- name: Run Flake8 (Style Check)
37
# Style enforcement using MerginMaps standards
38
# Ignoring E501 (line length) and W503 (operator line breaks)
0 commit comments