bobus-avtobus
Some checks failed
CI/CD Pipeline / lint-sast (push) Successful in 3m12s
CI/CD Pipeline / deploy (push) Failing after 7s

This commit is contained in:
Arseniy Sitnikov 2025-05-18 14:51:38 +03:00
parent 5a2dc140ce
commit 064e187f8a

View File

@ -23,13 +23,12 @@ jobs:
python -m venv venv
source venv/bin/activate
pip install flake8
flake8 . --ignore=E501
flake8 . --ignore=E501 --exclude=venv
continue-on-error: true
- name: Run Semgrep (SAST)
run: |
curl -sSL https://semgrep.dev/install.sh | sh
./semgrep/semgrep scan --config auto --error
pip install semgrep
semgrep --config=auto .
deploy:
needs: lint-sast
runs-on: ubuntu-latest