Add non root user #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Test and Coverage" | |
on: | |
push: | |
branches: | |
- '*' | |
- '**' | |
- '*/*' | |
- '**/**' | |
- '!dev' | |
tags-ignore: | |
- '**' | |
workflow_call: | |
jobs: | |
security_scan_analysis: | |
name: Smegrep Scan Analysis | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.x | |
- name: Install semgrep | |
run: python3 -m pip install semgrep | |
- name: Run semgrep | |
run: semgrep scan --error |