Skip to content

Commit 0be79fa

Browse files
committed
CI: removed ruff
1 parent f98e22e commit 0be79fa

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

.github/workflows/security_check.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
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 ruff
22+
pip install bandit detect-secrets flake8 flake8-json
2323
2424
- name: Run Bandit (Security Scan)
2525
# Scan the mergin folder for vulnerabilities, excluding the test directory
@@ -29,10 +29,6 @@ jobs:
2929
# Scan the plugin directory for hardcoded secrets/credentials
3030
run: detect-secrets scan ./mergin/ --all-files
3131

32-
- name: Run Ruff (Linting)
33-
# Excluding mergin/test
34-
run: ruff check ./mergin/ --line-length 120 --exclude mergin/test
35-
3632
- name: Run Flake8 (Style Check)
3733
# Style enforcement using MerginMaps standards
3834
# Ignoring E501 (line length) and W503 (operator line breaks)

0 commit comments

Comments
 (0)