open-vault/.circleci/config/commands/setup-semgrep.yml

15 lines
346 B
YAML

---
description: >
Ensure semgrep is installed.
steps:
- run:
working_directory: ~/
name: Setup Semgrep
command: |
apk add --no-cache python3 py3-pip make
python3 -m pip install --user semgrep==0.97.0
export PATH="$HOME/.local/bin:$PATH"
echo "$ semgrep --version"
semgrep --version