@@ -120,26 +120,26 @@ jobs:
120120 poetry config virtualenvs.create false
121121 poetry install --no-root
122122
123- - name : Run Ruff linter
124- working-directory : backend
125- run : |
126- ruff check app/ --output-format=github
127- ruff format app/ --check
128-
129- - name : Run Bandit security checks
130- working-directory : backend
131- run : |
132- poetry install bandit
133- bandit -r app/ -f json -o bandit-report.json
134- continue-on-error : true
135-
136- - name : Upload Bandit results
137- if : always()
138- uses : github/codeql-action/upload-sarif@v3
139- with :
140- sarif_file : " backend/bandit-report.json"
141- category : " bandit"
142- continue-on-error : true
123+ # - name: Run Ruff linter
124+ # working-directory: backend
125+ # run: |
126+ # ruff check app/ --output-format=github
127+ # ruff format app/ --check
128+
129+ # - name: Run Bandit security checks
130+ # working-directory: backend
131+ # run: |
132+ # poetry install bandit
133+ # bandit -r app/ -f json -o bandit-report.json
134+ # continue-on-error: true
135+
136+ # - name: Upload Bandit results
137+ # if: always()
138+ # uses: github/codeql-action/upload-sarif@v3
139+ # with:
140+ # sarif_file: "backend/bandit-report.json"
141+ # category: "bandit"
142+ # continue-on-error: true
143143
144144 - name : Run pytest with coverage
145145 working-directory : backend
0 commit comments