Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,3 +75,27 @@ jobs:
run: pylinkvalidate.py -P http://localhost:8000/

- run: echo "Done"

codeql:
name: CodeQL Security Scan
runs-on: ubuntu-latest

permissions:
security-events: write
contents: read

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: python
queries: security-and-quality

# Para Python NO hace falta build ni dependencias
# CodeQL analiza el código fuente directamente
Comment on lines +97 to +98
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please remove these comments or write them in English... From my basic Spanish they don't seem to add a lot of value, so I would lean towards removing


- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
Loading