Skip to content

Commit

Permalink
add security scan
Browse files Browse the repository at this point in the history
  • Loading branch information
sylvain.perrinel committed Nov 9, 2024
1 parent ac9b7be commit 93794f4
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,3 +40,24 @@ jobs:
echo "DISCORD_TOKEN='test'" >> .env
echo "HELLOASSO_CLIENT_SECRET='test'" >> .env
pytest
dast:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Install dependencies
run: |
cd src
pip install .
- name: Scan Security issues
uses: ShiftLeftSecurity/scan-action@master
with:
type: "credscan,python,depscan"

- name: Upload Reports
uses: actions/upload-artifact@v1
with:
name: reports
path: reports

0 comments on commit 93794f4

Please sign in to comment.